# Complex LoadMovie to attachMovie

**URL:** https://forum.kirupa.com/t/complex-loadmovie-to-attachmovie/30531
**Category:** flash
**Created:** [September 10, 2003, 5:44am UTC](https://forum.kirupa.com/t/complex-loadmovie-to-attachmovie/30531 "2003-09-10T05:44:48Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![waffe](https://avatars.discourse-cdn.com/v4/letter/w/c37758/32.png) [@waffe](https://forum.kirupa.com/u/waffe)
#### Post date: [September 10, 2003, 5:44am UTC](https://forum.kirupa.com/t/complex-loadmovie-to-attachmovie/30531/1 "2003-09-10T05:44:48Z")

</div>

I have a perfectly working script that loops though an array and pumps out as many dynamically created blankMovieClips as needed. Then I have a loadMovie command that loads an external swf in to all of the blankMovieClips. Check it:

```auto

_root.loadbanner_mc.createEmptyMovieClip("banner"+i, i+3);
loadMovie("DB.swf","_root.loadbanner_mc.banner"+i);

```

What I would like to do is change my load approach and use the attachMovie command. Can someone help with the difference between the two commands? How can I do the same thing with the attachMovie command?

I am hoping this will decrease fill size an increase performance. I am loading 30 to 40 clips that are 10k each. That adds up fast for a modem.
