/ Published in: ActionScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public function hideElement():Void{ ZigoEngine.doTween( this, '_alpha', [ 0 ], 1, "easeOutExpo", 0, {scope:this, func:'removeElement'}); } // END hideElement() public function removeElement():Void{ this.removeMovieClip(); } // END removeElement()