Button text color not changing
by amaranthia · in Torque Game Builder · 06/14/2008 (11:18 pm) · 1 replies
For some reason, I can't get the color of my text to change from green to red when I highlight it with my mouse. The text is on a button, and I'm using this profile for the button:
Am I missing something simple?
// Button
new GuiControlProfile (GuiProfileE10)
{
fontType = %button;
fontSize = 30;
justify = "center";
fontColor = %green;
fontColorHL = %red;
};Am I missing something simple?
Torque Owner Greg Tedder
Try changing it to a global variable and see if that helps. $red
If this is not the case, try replacing red with "255 0 0". It might work?