# External movieClip loads twice into container MC?

**URL:** https://forum.kirupa.com/t/external-movieclip-loads-twice-into-container-mc/198691
**Category:** Uncategorized
**Created:** [August 27, 2006, 8:09pm UTC](https://forum.kirupa.com/t/external-movieclip-loads-twice-into-container-mc/198691 "2006-08-27T20:09:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![FlashPirateYarr](https://avatars.discourse-cdn.com/v4/letter/f/f08c70/32.png) [@FlashPirateYarr](https://forum.kirupa.com/u/FlashPirateYarr)
#### Post date: [August 27, 2006, 8:09pm UTC](https://forum.kirupa.com/t/external-movieclip-loads-twice-into-container-mc/198691/1 "2006-08-27T20:09:47Z")

</div>

Has anyone had this problem? I have a button which loads an external SWF into a container MC on my stage. Every now and then (especially when the system’s resources are taxed) the external movieclip loads twice into the container, and stopping it via the “pause” control only stops the first SWF–the other goes right on playing underneath it.

Here’s my code:

```auto
btn01.onRelease = function() {
    container.unloadMovie();
    myMCL.loadClip("assets/01.swf",container);
}

```

Unloading the container before loading in a new SWF made the duplication happen less often, but it still happens now and then. Does anyone have any idea what might be going on here?

Thank you in advance for your help. I’ll be presenting this project tomorrow!
