Duplicate + targeting?

Peepz,

i have this script to duplicate:


//root timeline actions
for (i=0;i<count;i++) {
  duplicateMovieClip ("ball","ball"+i,i);
  ["ball"+i]._width = 300

when i trie to target to: [“ball+i”]._width i get undefined but i can trace it with trace([“ball”+i]). then it works!

i want to target to one of the duplicated balls outside the for loop and outside the movieclip how can i do that?

something like: this._parent.mcMenu[“ball+i”]._width ??