Hi,
I was wondering if there is a way to change the color of an object during runtime. any ideas?
Thank you for helping.
you can use the colortransform property of your objects transform property. so, if you have a displayobject mc, you can use:
var t:Transform = mc.transform
var ct:ColorTransform = t.colorTransform;
ct.color = 0xff0000;
mc.transform.colorTransform = ct;