hey, I’ve got an duplicated mc that moves from the top of the stage to the bottom. I’m trying to reset it to go back to the top… after it has reached the bottom,but not having much success…
this is what I am using at the moment.
[AS]
for (var i = 0; i<100; i++) {
duplicateMovieClip(“chunk”, “chunk”+i, i);
target = eval(“chunk”+i);
target._x += random(200);
target._y += random(300);
}
function reset() {
_y = -14.2;
}
{[/AS]
and on the mc
[AS]
onClipEvent (enterFrame) {
speed = 10;
_y += 1+speed;
}
{[/AS]
Any sug… much appreciated…
thanx mako