How do I make a loop to repeat my clock animation? I want to "replay" the animation. Need examples using loops and arguments.
ANALOG CLOCK EXAMPLE
Clock "ticks" and values can be changed.
var timer:Timer = new Timer(200, 36);//1000 = 1 sec
timer.addEventListener(TimerEvent.TIMER, onTimer);
timer.start();
function onTimer(evt:TimerEvent):void {
watch.hand.rotation +=5;
}
I WANT EXAMPLE TO
Play animation from 1:00 to 2:00 and keep repeating.
"out to lunch time"
play->go back->play again