PDA

View Full Version : Communicating with Loaded Movies



Marcellinus
September 7th, 2002, 05:25 AM
Hi, I am having a problem with movies communicating.

I have the following code to load a .swf into Level 1:

____________________________

stop();
loadMovieNum("Intro.swf", 1);
____________________________


Then on the end of Intro.swf i have the following code:

____________________________

unloadMovieNum(1);
_root.play();
____________________________

What I want Intro.swf to do [when finsihed] is to make the movie that loaded it continue playing.

I have tried changing _root.play to _level0.play & _parent.play.

TIA

andr.in
September 7th, 2002, 07:22 AM
try swapping the order of the actions from

unloadMovieNum(1);
_root.play();

to

_root.play();
unloadMovieNum(1);

----
If that doesn't work try changing "play();" to gotoAndPlay(frame)"

Marcellinus
September 7th, 2002, 09:08 AM
Thx fr the help! Niether of them worked..When i change the order it "worked" that same way as it had before. And when I change it to goto frame it made the loaded .swf not the main movie goto frame x. Thanks for the help, any ideas welcome.