PDA

View Full Version : loadmovie.......gotoandplay()



Drunken
May 25th, 2003, 07:10 PM
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 :(

thks...for any help :)

meisje
May 25th, 2003, 10:09 PM
i am not sure but try

_level0.gotoAndPlay(90)

thoriphes
May 26th, 2003, 12:22 AM
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.

Drunken
May 26th, 2003, 06:31 AM
thks it works..... :)