Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 16th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Replay button in flash cs5.5
  2. var animation:Animation;
  3.  
  4. replay.addEventListener(MouseEvent.CLICK _replay);
  5. function _replay(e:MouseEvent = null):void
  6. {
  7.     if(animation != null)
  8.  
  9.         if(animation.parent)
  10.             animation.parent.removeChild(animation);
  11.     }
  12.  
  13.     animation = new Animation();
  14.  
  15.     addChild(animation);
  16. }
  17.  
  18. _replay();