Guest User

Untitled

a guest
Jul 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Stage.scaleMode = "noScale";
  2. var theWidth = Stage.width;
  3. var theHeight = Stage.height
  4. PFbackground._width = theWidth;
  5. PFbackground._height = theHeight;
  6.  
  7. var resizeListener:Object = new Object();
  8. Stage.addListener(resizeListener);
  9.  
  10. resizeListener.onResize = function () {
  11. PFbackground._width = Stage.width;
  12. PFbackground._height = Stage.height;
  13. };
Add Comment
Please, Sign In to add comment