styleBunny
Technical User
im a bit rusty at flash, so here goes.
on (release) {
for (x=0; x<5 ; x=x+1) {
_root.ball._x = random(500);
_root.ball._y = random(400);
}
}
i want to use this loop so that my ball movie does 5 random location changes then stops, at the moment it does 1 random for each click, and doesnt stop at 5. plz help
p.
on (release) {
for (x=0; x<5 ; x=x+1) {
_root.ball._x = random(500);
_root.ball._y = random(400);
}
}
i want to use this loop so that my ball movie does 5 random location changes then stops, at the moment it does 1 random for each click, and doesnt stop at 5. plz help

p.