Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /**
  2. * Handles an onRelease event.
  3. * @param source The MovieClip that triggered the onRelease event.
  4. */
  5. public function onButtonReleaseHandler(source:MovieClip):Void
  6. {
  7. switch(source) {
  8. case playBtn:
  9. App.getInstance().playGame();
  10. break;
  11. case quitBtn:
  12. fscommand ("quit");
  13. break;
  14. }
  15. }
Add Comment
Please, Sign In to add comment