I have a button that tells a movie clip, currently loaded on level2, to play a frame named “next”. After “next” is played and the movie clip reached frame “end” I want another movie to load onto the exact same level.
What I have now works only half way, it loads a new movie, yet doesn’t allow the previous one to play the needed frame. Only when I get rid of ifFrameLoaded etc. it plays “next” etc.
on (release) {
tellTarget ("_level2")
gotoAndPlay (“next”);
ifFrameLoaded ("_level2", “end”)
loadMovieNum (“services.swf”, 2);
}
Thank you, guys!