Need help transition with external swf

I’ve used the tutorial in kirupa for transition between external swf’s. I’ve put all the code in and the only thing that works properly is the loading of the first movie on openinge. After that nothing?

Anyone have some kind of ideas?

Also my main navivigation is not on the main timeline but this is the code i’ve used on the buttons:

[color=lime][color=blue]on (rollOver) {
this.gotoAndPlay(“over”);
}
on (rollOut) {
this.gotoAndPlay(“out”);
}
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “about”;
contents.loadMovie(“about.swf”);
} else if (_root.currMovie != “about”) {
if (contents._currentframe>= contents.midframe) {
_root.currMovie = “about”;
contents.play();
}
}
}[/color]
[/color]
[color=lime][/color]
[color=lime][color=black]I’m stuck.:puzzled: [/color]
[/color]