Loadmovie.......gotoandplay()

hy!

I have this situation:

1 main movie
1 external movie

I load the external movie into main ( loadMovie(“menu1.swf”,menus); ), and i want to put a gotoandplay() from the menu1.swf to 90 frame on main movie…

I try to this _root.gotoandplay(90); but didn’t works :frowning:

thks…for any help :slight_smile:

i am not sure but try

_level0.gotoAndPlay(90)

try this:

menus.gotoAndPlay(90);

and if that doesn’t work, change the loadMovie function to this:

loadMovie("menu1.swf", "menus");

and try the above again.

thks it works… :slight_smile: