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