Completely Stumped my Flash Guru Friend

Last week, I posted about my problems using transitions with external swfs…since then have tried a variety of approaches, asked my flash genius friend, who can’t seem to figure it out either.

I’m using this code from the great tutorial on kirupa on each of the buttons:

on (release) {
if (_parent.currMovie == undefined) {
_parent.currMovie = “whoweare”;
container.loadMovie(“whoweare.swf”);
} else if (_parent.currMovie != “whoweare”) {
if (container._currentframe >= container.midframe) {
_parent.currMovie = “whoweare”;
container.play();
}
}
}

The resulting swf calls up the first half of the movies no problem. That part is seamless. However, the ‘outros’ are nowhere to be found.

If anyone has any ideas I will be eternally grateful. Thanks so much in advance.