I am currently trying to set up an auto width button that is disabled so it cannot take focus. The problem I am having is in overriding part of the label color. Once the button is disabled, it only seems to use the <disabledcolor> tag, ignoring any [COLOR] blocks defined.
Is there any way to have multiple colors on a disabled button, or to otherwise prevent a button from being able to get mouse focus without being disabled?
Code:
<control type="button">
<width>auto</width>
<height>45</height>
<enable>false</enable>
<disabledcolor>FF666666</disabledcolor>
<texturenofocus colordiffuse="FFF1F1F1">backgrounds/white.png</texturenofocus>
<label>Test1 [COLOR FFFF9800]Test2[/COLOR]</label>
</control>