Switching scenes from movie clips
Ok so I have my main time line...I have 2 scenes (scene 1 and scene 2) I put a movie clip into the first keyframe of scene 1. the movie clip has 30 frames...in the last frame of the movie clip I have a script that says
on(release) {
gotoAndStop("Scene 2", 1);
}
So basically when the movie clip reaches the end I want my movie to goto scene 2.....It's not working :(...Not switching scenes..I've also tried to do it by frame label like-
gotoAndStop(".Scene 2", "name");
where name is my frame label.
What am I doing wrong?