this is weird and is bugging me, in fact it’s driving me nuts and this is now a big problem because I have a tight deadline
I have a preloader which, once it’s done it goes to the next scene and loads a movie. In that movie loads another movie and then a menu appears in that movie. Clicking on the menu takes you out of both movies to the scene and then into a movie and then into another movie (just like before). However this time when the menu appears and I use the same kind selection method, rather than going to the scene specified I’m automatically taken to the next frame in the movie, no matter the selection
sorry if this is confusing but I have a movie in frame 1, this then loads another movie inside itself and in that 2nd movie a menu appears. This works first time around but then not 2nd, the main movie (on the _root stage appears at frame 3. I select a menu option which skips the parent movie to frame 5. Next time, no matter my selection I’m taken to frame 6.
HELP :puzzled:
From the menu, the choice is
on(press){
_parent.MenuJump(“SmallWorld”);
}
this then calls the MenuJump function
function MenuJump(pStat){
if (pStat == “SmallWorld”){ _parent.SmallWorld(); }
}
And on the root frame this function is then called
function SmallWorld(){
gotoandplay(4);
}
but I’m taken from frame 5 to frame 6, rather than 4…help :*(