Listening for Timer Events : Timer Event « Animation « Flash / Flex / ActionScript






Listening for Timer Events

 
package {
    import flash.display.Sprite;
    import flash.utils.*;
    import flash.events.*;
    public class Main extends Sprite {
        public static const TIMER_DELAY:Number = 1 * 1000;
        public var timer:Timer = new Timer(TIMER_DELAY, 10);

        public function Main() {
            timer.addEventListener(TimerEvent.TIMER, onTimer);
            timer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
        }
        private function onTimer(event:TimerEvent):void {
            trace("Tick.");
        }
        private function onTimerComplete(event:TimerEvent):void {
            trace("Ding!");
        }
    }
}

        








Related examples in the same category

1.Using Timers
2.A timer that has just five intervals:
3.add the start() method to our program, things start happening: