# Problem with transitions with 2swf's

**URL:** https://forum.kirupa.com/t/problem-with-transitions-with-2swfs/225215
**Category:** flash
**Created:** [May 9, 2007, 7:02pm UTC](https://forum.kirupa.com/t/problem-with-transitions-with-2swfs/225215 "2007-05-09T19:02:35Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![vendi](https://avatars.discourse-cdn.com/v4/letter/v/5f8ce5/32.png) [@vendi](https://forum.kirupa.com/u/vendi)
#### Post date: [May 9, 2007, 7:02pm UTC](https://forum.kirupa.com/t/problem-with-transitions-with-2swfs/225215/1 "2007-05-09T19:02:35Z")

</div>

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!
