Transitions Between External SWFs Tutorial

Hi I Have a Question… (sorry My english):frowning:
If the code to call a external is:


on (release) {
	if (_root.currMovie == undefined) {
		_root.currMovie = "**[color=blue]MOVIE1[/color]**";
		container.loadMovie("[color=blue]**MOVIE1.swf**[/color]");
	} else if (_root.currMovie != "**[color=blue]MOVIE1[/color]**") {
		if (container._currentframe>=container.midframe) {
			_root.currMovie = "[color=blue]**MOVIE1**[/color]";
			container.play();
		}
	}
}

Now, my Problem…
Now… In that [color=blue]MOVIE1.SWF[/color], I have a button. And I have to call from that movie, this movie—> "[color=blue]MOVIE2.SWF" [/color][color=black]in the container…[/color]

[color=black]How it would be the code?[/color]
Pleasee…