2 swf movies!

Hi there, I’m back with an question again.

I know that it’s possible to load and unload swf movies inside a movie. But it will not work with me.
I have 2 movies. lets say movie A.swf and B.swf Now what i want is to go from A to B and back again. From A to B is not a problem but to go back. I want to go from Movie B.swf to a scene in Movie A.swf
Does someone know how to go to a scene from another movie?

greets Bram

Can you post your FLA’s?

TD

no i can’t post my fla’s because its for my work, but if someone can tell me how i can do it ill would be happy.

i want (if i press a button) to load an swf movie. But when i do so it will load the movie from the start. But i want it to start from an other scene instead of the begin of de movie.

I hope i expained it well. Please let me know if someone knows how it can be done.

thanks
Bram

depends on how you are loading your external movie, are they targets or levels?

loading a movie and jumping to a specific would be tough… and would require some sweats… =)

but!, if you are loading your movie A and B on a clip on the Main movie, you can still jump on a specific frame…

on your button for loading movie B which is on the main movie, for example, place…

on (release){
myFrame = 10; // the frame number which you want to jum onto
loadMovie(“movieA.swf”,container);
}
//container is a movieclip where you will load your Movie A or B

on the first frame of your movie B write…

gotoAndStop(_root.myFrame);

something like that…
hope that helps…