Hi all,

From main movie I call a 2nd movie to appear over the main movie using

_root.createEmptyMovieClip("myMovie",2);
_root.myMovie.loadMovie("mak_comp_esy.swf");
_root.myMovie._x = 125;
_root.myMovie._y = 200;

all good and working.

Below I need help...

Now, from a link in the 2nd movie, I want to close the 2nd movie and go back to the first movie advancing the first movie to another page (frame).

from...

_root.link = 1;

to...

_root.link = 7;

the main first movie is in frame (page) 1 (_root.link = 1;) when the second movie is called. When the second movie closes I want to go to frame(page) 7 (_root.link = 7;) in the first main movie.

suggestions appreciated.

hamlett22