Change movieclip color

Hi!

i found the “Changing color i actionscript 3” tutorial here on kirupa and tested it out and then modified it so it would fit my needs… But now im stuck…

Im using this piece of code to change the color of a movieclip on the stage:

var color_transformStartsvart:ColorTransform=startsida_mc.transform.colorTransform;
color_transformStartsvart.color=0xFFFFFF;
startsida_mc.transform.colorTransform=color_transformStartsvart;

But now i want to change the color of a movieclip thats inside another movieclip…
Lets say i have a movieclip called startingPage (and i use addchild to get on the stage) and in this movieclip i have another moveclip called startingText with an instance name Textstarting. And this i want to change the color of from my code in the main timeline.

How do i modify the code above to make this happen? :beam: