Let’s say I have a button on the main timeline. Now, how do I get that button, when pressed, to take me to, lets say frame 70 inside a particular movie clip that also resides on the main timeline?
When I press the button, nothing happens. Here is the scripting that I am using for my button that sits on the main timeline:
return1_mc.onRelease = function() {
whySponsor_mc.gotoAndPlay(90);
};
Can someone help? Thanks!