I’ve created a movie in my library so that I can recycle it throughout my flash piece. The button works as it should, in regards to the movement, however I want to make it so that when the user clicks it they go to a specific keyframe to begin a different section of the scene. It’s not working.
Specifics are as follows: the movie that I want to use as a button is called “photo” I placed it on a scene called “IntroScene” When a user clicks on it I want them to go to a keyframe labeled “photo_out”
I’ve tried:
on (rollOver) {
gotoAndPlay(“start_fx”); ///THIS IS THE BUTTON FX
}
on (release) {
gotoAndPlay(“IntroScene”, “photo_out”);
}
But it’s not working, however if I put a getURL it works (i.e. pulls up the webpage)
Please help!