Problem with transitions with 2swf's

Hello!
I recently read a lot of posts about my problem. But I can’t solve the problem.

Here I need Your help:

I have frame with:

_root.currMovie = “section1”;
container.loadMovie(_root.currMovie+".swf");

it load my first movie in container.

I have also buttons with this code:

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

( as seen in tutorial for smooth transitions with external swf )

My second button loads second movie witch contains in timeline another butons with codes shown before. I want also make transitions in this movie also. But I till now can’t do this…

I think a problem is with path or something else. I do not understand what to change. Would somone can detailed explain the right code in second loaded movie with menu.

If need I can make a picture with all content sheme.

Many thanks!