# HELP! - Transition Between Exteral SWF

**URL:** https://forum.kirupa.com/t/help-transition-between-exteral-swf/235894
**Category:** flash
**Created:** [August 15, 2007, 4:54pm UTC](https://forum.kirupa.com/t/help-transition-between-exteral-swf/235894 "2007-08-15T16:54:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sparky\_157](https://avatars.discourse-cdn.com/v4/letter/s/c68b51/32.png) [@sparky\_157](https://forum.kirupa.com/u/sparky_157)
#### Post date: [August 15, 2007, 4:54pm UTC](https://forum.kirupa.com/t/help-transition-between-exteral-swf/235894/1 "2007-08-15T16:54:58Z")

</div>

I am using the [Transitions Between External SWF](http://www.kirupa.com/forum/../developer/mx2004/transitions.htm) Tutorial, I am having some troubles and would greatly appreciate any and all help.

I have a base layer where all the nav loaded externally. I applied the script to the buttons on the nav and works flawless.

In the SWF that it loaded by the nav I use the script again and is as follows:

```auto
on (release) {
    if (this.currMovie == undefined) {
        this.currMovie = "Content/Artist/Shantelle/bio";
        this.artistcontent.loadMovie("Content/Artist/Shantelle/bio.swf");
    } else if (this.currMovie != "Content/Artist/Shantelle/bio") {
        if (this.artistcontent._currentframe >= artistcontent.midframe) {
            this.currMovie = "Content/Artist/Shantelle/bio";
            this.artistcontent.play();
        }
    }
}

```

and the script on the final frame of the loaded SWF is:

```auto
this.artistcontent.loadMovie(this.artiscontent.currMovie+".swf")

```

This works, but when you click another button the SWF unloads and plays again.

ANY IDEAS WOULD BE GREATLY APPRECIATED, please ask if you need any clarification.

Thanks in advance for your help
