Timer in a loop

Hey,
firstly, i would like welcome all users, it’s my first post :slight_smile:
I want to make animation like in Matrix(falling β€˜1’ and β€˜0’), i write this code:


import flash.display.MovieClip;
 
var movie:MovieClip;
var myTimer:Timer;
 
 
for (var i:int=1; i*26<stage.stageHeight; i++)
{
	if (Math.ceil(Math.random() * 2) == 1)
	{
		movie = new zero  ;
	}
	else
	{
		movie = new jeden  ;
	}
	movie.y=26*(i-1);
	myTimer = new Timer(200 * i,1);
	myTimer.addEventListener(TimerEvent.TIMER, runOnce);
	myTimer.start();

}
	function runOnce(event:TimerEvent):void
	{
		addChild(movie);
		trace('s');
	}

but it doesn’t working correctly, can someone show me where i made mistake?
sorry for my bad english
Thanks in advance :slight_smile: