mogabe
11-26-2002, 08:30 AM
I'm a reel newbie in action script. I'm trying to make snow, and I can't make the loop go and go and go. You want snow all the time, not just 50 flakes once.
i = 1;
while (i<50) {
_root.flake.duplicateMovieClip("flakex"+i, i);
_root["flakex"+i]._x = random(500);
_root["flakex"+i]._y = 0;
i += 1;
}
this is what the source looks like. I just want to know how to make it not to stop.
Thanks
i = 1;
while (i<50) {
_root.flake.duplicateMovieClip("flakex"+i, i);
_root["flakex"+i]._x = random(500);
_root["flakex"+i]._y = 0;
i += 1;
}
this is what the source looks like. I just want to know how to make it not to stop.
Thanks