my script has created these 3 levels ClipA.ClipB.ClipC
Clip C has a dynamic text box
When the movie loads…
ClipA creates multiple ClipB’s and then assignes each with a different color
myColor = new Color(boxname); //boxname = new instance name
myColor.setRGB(0xAB12B8);
When the mouse hovers over a ClipB it attaches a ClipC which automatically becomes the same color as it’s parent, which is good, except the Text in ClipC becomes the same color and therefore invisible.
I’ve tried using multiple methods, and MANY different places to drop the scipt in order to change text in ClipC
It seems once a new color has been invoked in ClipB, ClipC not only takes it but it can no longer be separated.???
By the by If I do not change the color of ClipB in the script, I can change ClipC;s colors
I can control the color of the text independently for the first 2 and 4th instances. but once I change the color of the parent in the 3rd, i can no longer change the color of the text for it’s child.