# Need help loading external movieclips

**URL:** https://forum.kirupa.com/t/need-help-loading-external-movieclips/239068
**Category:** Uncategorized
**Created:** [September 18, 2007, 2:10pm UTC](https://forum.kirupa.com/t/need-help-loading-external-movieclips/239068 "2007-09-18T14:10:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![incrediblehulk](https://avatars.discourse-cdn.com/v4/letter/i/aca169/32.png) [@incrediblehulk](https://forum.kirupa.com/u/incrediblehulk)
#### Post date: [September 18, 2007, 2:10pm UTC](https://forum.kirupa.com/t/need-help-loading-external-movieclips/239068/1 "2007-09-18T14:10:59Z")

</div>

i need to load some movieclips, but i need to adjust the positions dynamically at loading.

for example, say Loader objects are on an array “clip”, therefore i want something like

for(i=0; i\<clip.length; i++){  
clip\*.load(paths\*);  
clip\*.x=clip[i-1].x+clip[i-1].width  
addChild(clip\*);  
}

all i want to do is, tile the external clips around stage, then add event listeners to them but can’t use the code above, it doesn’t work
