<embed src=http://mlkdesign.online.fr/misc/kirupa/dup_experiment.swf height=300 width=300 type=application/x-shockwave-flash>
mhhh can anyone tell me why the round mc wont duplicate into a box, but makes an ugly pyramid with the wrong coordinates on top of that ???
here’s what’s on the duplicate button
on(release){
for(m=1; m<=5; m++) {
for(i=1; i<=5; i++) {
drag0.duplicateMovieClip(["drag"+i+"_"+m],i*m);
setProperty (["drag"+i+"_"+m], _x, drag0._x+i*30);
setProperty (["drag"+i+"_"+m], _y, drag0._y+m*30);
trace("drag"+i+"_"+m)
}
}
}