I am trying to load a published movie (movieB) into another movie(movieA). I would like movieB when it appears to beging playing at scene 2 frame 1. I can get it to load but it plays at scene 1 frame 1. Here is the code I am using on a button :
on(release){
loadMovie(“movieB.swf”,empty_mc);
gotoAndStop(“Scene2”,“first”);
}
//empty_mc is a blank movieClip on the root timeline of movieA
//first is the frame label of scene 2 of movieB.
Can someone inform me as to what I am doing wrong here or if it is even possible what I am trying to do. If I can get this to work I can link out to different training modules I have already built.