Guest User

Untitled

a guest
Feb 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. africaMiddleEast.addEventListener(MouseEvent.MOUSE_OVER,mover);
  2. africaMiddleEast.addEventListener(MouseEvent.MOUSE_OUT,moverout);
  3. africaMiddleEast.addEventListener(MouseEvent.MOUSE_DOWN,mdown);
  4.  
  5.  
  6. function mover(e:MouseEvent):void{
  7. africaMiddleEast.gotoAndPlay(2);
  8. }
  9.  
  10. function moverout(e:MouseEvent):void{
  11. africaMiddleEast.gotoAndStop(1);
  12. }
  13.  
  14. function mdown(e:MouseEvent):void{
  15. gotoAndPlay(2);
  16. }
Add Comment
Please, Sign In to add comment