Manipulating MCs attached to other MCs

How do you address a mc attached to another mc?

I have an array of movie clips some of which I have attached additional movie clips to. Now I need to alter scale/alpha etc of those additional movie clips.

ie.

for (i=0;i<BasicMCArray.length;i++) {
_root.BasicMCArray*.attachMovie(“myExtraMc”,“ExtraMC” + i,depth++);
}

How do I now manipulate the “ExtraMC” movie clips? I know I can use
_parent to get at the parent mc but how do I get at the “child” when names are dynamically created as above?

Any advice would be much appreciated!

couple of ways here

for (i=0; i<BasicMCArray.length; i++) {
myClip = _root.BasicMCArray*.attachMovie(“myExtraMc”, “ExtraMC”+depth, depth++);
myClip._alpha = 50;
// can use this too _root.BasicMCArray*[“ExtraMC”+depth]._alpha = 100;
}

stringy you are my saviour!

thanks so much! I’m really far too dense for what I’m trying to do. Still,I shall try not to wear out my welcome on this forum for a while now.

Thanks again

Boondogger