home *** CD-ROM | disk | FTP | other *** search
/ ftp.novell.com / 2014.06.ftp.novell.com.tar / ftp.novell.com / forge / camtasia.msi / Cabs.w1.cab / fp8_controller.swf2202 / scripts / frame_16 / DoAction.as
Text File  |  2009-08-19  |  404b  |  20 lines

  1. stop();
  2. container._visible = true;
  3. Stage.align = "TL";
  4. var resizeListener = new Object();
  5. resizeListener.onResize = function()
  6. {
  7.    container._width = Stage.width;
  8.    container._height = Stage.height;
  9.    background._width = Stage.width;
  10.    background._height = Stage.height;
  11. };
  12. if(csPreview == "true")
  13. {
  14.    Stage.scaleMode = "noScale";
  15. }
  16. else
  17. {
  18.    Stage.addListener(resizeListener);
  19. }
  20.