# Preloader transition external .swf stopped working

**URL:** https://forum.kirupa.com/t/preloader-transition-external-swf-stopped-working/292462
**Category:** Uncategorized
**Created:** [July 14, 2009, 2:29pm UTC](https://forum.kirupa.com/t/preloader-transition-external-swf-stopped-working/292462 "2009-07-14T14:29:48Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bardt79](https://avatars.discourse-cdn.com/v4/letter/b/c0e974/32.png) [@bardt79](https://forum.kirupa.com/u/bardt79)
#### Post date: [July 14, 2009, 2:29pm UTC](https://forum.kirupa.com/t/preloader-transition-external-swf-stopped-working/292462/1 "2009-07-14T14:29:48Z")

</div>

I have a project, on the main timeline I placed a mc containing a scalable random background slideshow and a mc containing the actual website.

Now (since i placed the website in a seperate mc) my transition between the external .swf files stopped working, it does close (in my case fade in) but it doesn’t open again (fade out)?

When I had the whole website without the background on the main timeline, everything worked fine (been using this in a few projects before). it had \_root all over, i tried to replace this with \_parent but still no luck… anybody know what I’m doing wrong… been staring at and trying this for days now.

Here is the code on the buttons in the mc containing the ‘website’:

```auto
b1.onRelease = function() {
    gotoAndStop("nieuwsarchief");
    if (section != "01_content.swf") {
        section = "01_content.swf";
        transition.gotoAndPlay("closing");
    }
};

```

Here is the code on the mc of the transition’:

frame 1:

```auto
_parent.section = "01_communicatie_sub1.swf";
stop();

```

on the keyframe with label closing:

```auto
loadMovie(_parent.section,_parent.holder);
stop();

```

last frame of the transition:

```auto
stop();

```
