How come my buttons that are in movie clips will only do stuff in that movie clip? I can only tell them to go to certain frames in the movie clip, and not in another. Is there any way I can make it so the buttons in my movie clips will go to a certain frame of Scene 1 or even do anything else???
Thanks,
Matthew
use frame names and that will get you well on your way.
Electrongeek showed me that you can use this for frame names and MC instances:
[AS]
on(press){
_root.instancename.gotoAndPlay(frame);
}
[/AS]
I like it.
(-: