Lets say I have 5 instances of a movie named BB1,BB2, BB3, BB4 and BB5 and I want to say move them 5 pixels to the right. Is there a way to do this in one statement and not have to post it 5 times? Basically how can I shorten this to one instance to affect all of them?
on (release) {
_root.BB1._x += 5;
_root.BB2._x += 5;
_root.BB3._x += 5;
_root.BB4._x += 5;
_root.BB5._x += 5;
}
Second question is, let say I want to create a Movie with different actions in each frame. then I want to continually call that one frame action from a button release. How would I go about this?
Action on frame is:
_root.MM._x += 5;
Button on stage to trigger this action over and over would be?. I’ve tried gotoandPlay but it only works once
on (release) {
_root.movie. ?
}