I have a button in my application and I want it to respond a bit in a special way. Initially the label color of the button is White, I want the color of the text to change to 50% white on the Over State and to 25% on the Down state. Is this possible?
I tried an alternative way using css which does not do the percentage stuff but only changes the color (see css code below), but this does not seem to work. I more specifically want the color to change in terms of percentage like I mentioned above. Can someone help on this one pls?
Note that I am using the Skin file only to loads images for each state on the button.
s|Button#specialButton {
downSkin: Embed(source="text.swf", symbol="btn_focus");
overSkin: Embed(source="text.swf", symbol="btn_hover");
upSkin: Embed(source="text.swf", symbol="btn_normal");
disabledSkin: Embed(source="menuButtons.swf", symbol="btn_disabled");
skinClass: ClassReference("specialbuttonSkin");
color:#ffffff;
textRollOverColor: #ffffff;
textSelectedColor: #d0d0d0;
}
Thanks for your help.