home *** CD-ROM | disk | FTP | other *** search
/ The Complete Idiot's Guide to Microsoft Excel 2010 / CIGExcel.iso / Videos / Flash / controller.swf / scripts / frame_16 / DoAction.as
Encoding:
Text File  |  2010-09-09  |  404 b   |  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.