Quote:
Originally posted by Dan D
If I am understanding your problem correctly I think I may be able to offer a possible solution. So, when you press "Button 1" you are targeting "Movie Clip 1" to play however when you press "Button 2" it targets "Movie Clip 2" to play but over the top of "Movie Clip 2" and you don't want to be able to see "Movie Clip 1" playing underneath it... right?
I would do this... on each of the 5 movie clips insert a blank keyframe in frame 1 along with a stop action that stops the movie on frame 1. The button actions for say "Button 1" would be
on (release) {
tellTarget ("Movie Clip 1") {
gotoAndPlay (2);
}
}
But also include the following script...
on (press) {
tellTarget ("Movie Clip 2 && Movie Clip 3 && Movie Clip 4 && Movie Clip 5") {
gotoAndStop (1);
}
}
This way when the button is pressed it targets all the other 4 movie clips to go to and stop frame 1 which is blank and on release of the button the targeted movie clip (in this case Movie Clip 1)will advance to frame 2 and play.
I am sure there are different ways of doing this but I think this could work for you.
Good Luck!