Hey,
firstly, i would like welcome all users, itβs my first post
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