If you put a button symbol into a movie clip. Then, place the movie clip onto the main time line. Add multiple scenes to the movie and multiple frames on the pain timeline. Go back to the button within the movie clip and program it
on (release) {
_parent.gotoAndStop(25);
}
This sends the main timeline to that frame.
:hr:
But,
You can’t do this
on (release) {
_parent.gotoAndStop(“Scene 2”, 25);
}
You can’t make the parent change to another scene in this fasion.
How come?