Flash Timer events with Action Script 3
This is my firs post and welcome to my blog, let me show you how use timer events with ActionScript 3.0.
The first step in using the Timer class is to create an instance of the class:
var timer:Timer = new Timer (delay:Number, repeatCount:int);
The class constructor takes two arguments, the first is mandatory, and specifies the delay, [...]