Changing fill color of MovieClip Actionscript 3
i want to ask, how to change only fill color of an instance on the stage - i can do it by using ColorTransform object, but it changes color of the whole instance, not just the fill. I want to change only the fill color, not the stroke color. can anybody help me? this is my code: function paint(){ var myColorTransform:ColorTransform = new ColorTransform(); myColorTransform.color = someColorNumber; coloredObject.transform.colorTransform = myColorTransform; } This cant be done once you've drawn a shape as action script has no way of determining what is a stroke and what is a fill. You have a