anudda Flash MX one
anudda Flash MX one
Out of context: Reply #1
- Started
- Last post
- 1 Response
- o0o0
Are all 50 mc's actually on the stage? Or are you using duplicateMovieClip?
Either way a loop is what you need. If you actually have 50 mc's on the stage, you should name them "myclip0", "myclip1" ... etc
then your code would look like:
for(i=0;i<50;i++){
myColor = new Color(_root["myclip" + i]);
myColor.setRGB(...);
}hope I understood your problem..