I have a main movie that has two scenes. scene1 has a movie clip which loads another movie clip inside it using loadMovie method, when I load the external movie using the following code in the last frame of the movie clip:
this.createEmptyMovieClip(
"container
",1);
setProperty(this.container
, _y, _root._y);
setProperty(this.container
, _x, _root._x-200);
this.container.loadMovie("
gallery1.s
wf");
stop();
I have two problems:
1- the external movie loads and the main movie plays the second scene and I don't want it to play.
2- The external movie has some dynamic text fields; the text does not show and the code on the buttons does not work.
Start Free Trial