Guest User

Untitled

a guest
Aug 25th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. stage.addEventListener( MouseEvent.MOUSE_OVER, showMenu);
  2. stage.addEventListener( MouseEvent.MOUSE_OUT, hideMenu);
  3.    
  4. function showMenu(e:MouseEvent):void {
  5.     trace('show');
  6. }
  7. function hideMenu(e:MouseEvent):void {
  8.     trace('hide');
  9.  
  10. }
Add Comment
Please, Sign In to add comment