Question
Change movieClip background
this is a movieClip with a textField placed over it. I would like to change the movie clips color when clicked, but not the text color.
var myColorTransform = new ColorTransform();
myColorTransform.color = 0xFFFFFF;
mc.transform.colorTransform = myColorTransform;
When I try the code above it changes the whole movie clip color, text included. Is there a way to just change the background movieclip color and keep the text un changed?