
Strength & honor, Big Spaceship. Strength & honor.


private var dictionary : Dictionary = new Dictionary();
private function yourFunction(x:Number : void {
var timer:Timer = new Timer(500,1);
dictionary[timer] = x;
timer.start();
timer.addEventListener(TimerEvent.TIMER, callBack);
}
private function callBack(e:Event) : void {
trace("!! my parameter = " + dictionary[e.target]);
}



