// Author: Robert Lie (Mobilefish.com) // More information, see: https://www.mobilefish.com/developer/flash/flash_quickguide_actionscript_3_examples.html var startTimer:Timer = new Timer(4000, 1); startTimer.addEventListener(TimerEvent.TIMER, startAnimation); function startAnimation(event:TimerEvent):void { animation_mc.play(); } animation_mc.stop(); startTimer.start();