Transitions Between Externals swf's

Hello,

I just have a quick question. Im using this script on each button to load the external swf into the movie:

[AS]on (release) {

if (_root.currMovie == undefined) {

_root.currMovie = “main”;
container.loadMovie(“main.swf”);
} else if (_root.currMovie != “main”) {
if (container._currentframe >= container.midframe) {

_root.currMovie = “main”;
container.play();

}

}

}[/AS]

Im using buttons that are inside another movie clip and i want them to be able to load the content into ‘Scene 1’ not the current scene. Can i just change _root.currMovie to _root.Scene1?

Will that work?

Thanks :wink: