hmm ...

// begin code
function alot(max) {
 var basename:String = "circle_mc";
 for(var i = 0; i < max; i++) {
  _root.it_mc.duplicateMovieClip(basename+i, this.getNextHighestDepth() );
  _root[basename+i]._x = 100 + i*5;
  _root[basename+i]._y = 100 + i*5;
  
 }
}

the trace returns "0". why are my dynamically duplicated movieclips not showing 
up on the stage???

-eddie
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to