Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function enterFullScreen() {
  2. debug("Enter Full screen");
  3. stage.displayState=StageDisplayState.FULL_SCREEN;
  4. FULL_SCREEN = true;
  5. fullScreenBtn.gotoAndStop("on");
  6.  
  7. }
  8.  
  9. function exitFullScreen() {
  10. trace("EXIT FULL SCREEN");
  11. stage.displayState = StageDisplayState.NORMAL;
  12. FULL_SCREEN = false;
  13. fullScreenBtn.gotoAndStop("off");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement