With a white button, I want it to go black after being clicked
var newColorTransform:ColorTransform = one.transform.colorTransform;
newColorTransform.color = 0xCCCCCC;
one.transform.colorTransform = newColorTransform;
So I can do something like above (with on release logic) - but then on rollover the colour will always be the same as set above (I still want it to go blue on rollover regardless of its white or black default colour).
So how do I change the colour of “UP” frame only OR maby make a black frame five and make it act like frame “UP” - I haven’t been able to figure either way out, help with either or any new ideas as to how to solve the problem are appreciated.
Thanks