If the button is in the same movie then use this
on (release) {
_root.gotoAndPlay(4);
}
One thing you might consider doing is to add another layer and call it labels. Then label that frame 4 something like "play_movie". Then create your button action as
on (release) {
_root.gotoAndPlay("play_movie");
}
Why do this? It creates a more dynamic button, that way you can add more frames without having to go back and figure out what frame number you need for your movie.
|