I have a movie that currently has two scenes... scene one is an intro of sorts, then scene two loads (mid way it fades in a simple mc (Movie clip A)) then it stops with a simple actionscript stop command...
Now, heres where Im running into trouble... have another MC that holds navigation (Movie clip B)... when I click a button in this navigation mc I want the OTHER mc on the stage to go to a specific frame in that other mc (Movie clip A)
I've tried the following to get 'MC A' to move to frame 20 (of that particular MC) when the button is clicked = but I get nothing.
Now, heres where Im running into trouble... have another MC that holds navigation (Movie clip B)... when I click a button in this navigation mc I want the OTHER mc on the stage to go to a specific frame in that other mc (Movie clip A)
I've tried the following to get 'MC A' to move to frame 20 (of that particular MC) when the button is clicked = but I get nothing.
Code:
on (release) {
_root.photo.gotoAndPlay(20);
}