Hi all,
I want to know if it is possible to change the overstate of this component button. I can’t seem to be able to edit it. I have attached a copy of the file.
It currently changes to green I want it to go another colour.
Many thanks in advance
system
February 17, 2004, 10:19pm
2
no you have not attached a copy of your file
system
February 18, 2004, 8:45am
4
place this on the button. it’s the only thing I know…
[AS]
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.setStyle(“themeColor”, “haloOrange”);
this.setStyle(“color”, “0xFF0000”);
} else {
this.setStyle(“themeColor”, “haloGreen”);
this.setStyle(“color”, “0x000000”);
}
}
[/AS]
system
February 18, 2004, 10:18am
5
Can’t we just delve into the skins and change it there?
system
February 18, 2004, 11:28am
6
yup. maybe. I suggest you read the help and do some searches here on the forums.