Hello All!

Here's what I'm trying to do. I have a base movie clip with 2 inner movie clips inside it. I am dynamically setting the color of one of the inner movies. Here is my code

code:

sqColor = new Color(_root["square" + j].filler);
sqColor.setRGB(thisColor);



This code sets the color of a movie labeled filler within my "square"+j MC.

Accessing the dynamic variable name through the _root array works fine. HOWEVER! I cannot use the _root array. I am using the loadMovie function in another MC to call this MC. So the _root array is no longer the same and it doesn't work.

Is there another way to do this? I've tried to access the "square"+j object with out the _root reference, but no luck.

Any suggestions? THANKS IN ADVANCE!!