Help with Movie clip control

Hey all,

Let me explain what I want to do. I want to have a button, which when you click, it tells 1 movie clip to goto a frame and tells another movie clip to goto a frame…How do I do this?

Thanks!

Ben

give your first movieclip the instance name mc1 and 2nd clip instance name mc2. if you wanted mc1 to goto frame 5, and mc2 to goto frame 15, AS for button:

[AS]on(release){
mc1.gotoAndStop(5);
mc2.gotoAndStop(15);
}[/AS]

Thank you very much :slight_smile:

no problem.

oh btw, what if I wanted to use frame labels instead of frame numbers?

almost the same


mc1.gotoAndStop("myLabel");

regards
.kaz

Thanks a lot