hey, i have a button inside a movie clip that i want to go to a scene i have named Level.
I have three scenes, these are the order they are in top to botton: Intro, Level, Game.
I want the button that is inside the movie clip to go to the Level scene.
I have tried various _root scripts but no joy,
I managed to get this working but the script takes be to my Intro Scene.
on(release) {
tellTarget(_root) {
gotoandplay(“Level”,1);
}
}
Is _root in the above the first scene?
Replies Appreciated, thanks.