At first sorry for my english…
O.K. I have this type of problem, I want to create a function that creates various types of MC. Lets say so:
function Mc([function_name]){
this.createEmptyMovieClip([function_name],this.getNextHighestDepth());
}
for (i = 0;i<100;i++){
star = "number_"+i;
Mc(star);
}
Explanation: Create function that creates MovieClip, make for statment to create more Mc with that function.
I hope you got the idea.