My situation:
I have 3 black text buttons that have a **colored rollover **(I did this manually). After you click one button, it turns grey. I used the following code for this (for button1/3):
btnColor = new Color(button1);
btnColor.setRGB(0xCCCCCC);
btnColor = new Color(button2);
btnColor.setRGB(0x000000);
btnColor = new Color(button3);
btnColor.setRGB(0x000000);
As you can see, the others get black. I did this in case the user has clicked the specific buttons before, so that they get back the original color (black).
BUT, this disables the (manual made) button rollover color.
How can I fix this?
Ps: I searched the net/kirupa/actionscriptdotorg (in a rush) for any tutorials but couldn’t find any.
Thanks!