This content has been marked as final.
Show 5 replies
-
1. Re: how do you dynamically move duplicated _mc's?
pwyon May 9, 2006 8:57 PM (in response to JF Lachap)Try this:
for (var i:Number = 0; i<=10; i++) {
mc = this.attachMovie("rond_mc" , "rond_mc"+i, this.getNextHighestDepth());
mc._x = i*5 ;
trace( mc );
}//end for -
2. Re: how do you dynamically move duplicated _mc's?
kglad May 9, 2006 9:09 PM (in response to pwyon)that won't account for the widths of the movieclips. try:
-
3. Re: how do you dynamically move duplicated _mc's?
JF Lachap May 10, 2006 7:43 AM (in response to JF Lachap)YES!!
Thanks a bunch pwyon and kglad! All sides of the problem have been covered.
Cheers! -
4. Re: how do you dynamically move duplicated _mc's?
JF Lachap May 10, 2006 8:09 AM (in response to JF Lachap)YES!!
Thanks a bunch pwyon and kglad! All sides of the problem have been covered.
Cheers! -
5. Re: how do you dynamically move duplicated _mc's?
kglad May 10, 2006 8:22 AM (in response to JF Lachap)you're welcome.