My transition scripting is based off of the tutorial “Transitions Between External SWFs” by Voetsjoeba.
How can I make the main nav buttons change the current SWF being loaded if they are pressed during the intro phase before the current SWF reaches midframe? The problem I have is the user has to wait for the externally loading SWF to reach midframe before the main navigation buttons will work.
Here is the AtionScript on the main nav buttons.
[COLOR=DarkGreen]on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "AboutUs";
container.loadMovie("AboutUs.swf");
} else if (_root.currMovie != "AboutUs") {
if (container._currentframe >= container.midframe) {
_root.currMovie = "AboutUs";
container.play();
}
}
}
[COLOR=Black]Thanks in Advance.[/COLOR]
[/COLOR]