Hi,
How comes my button changes when I set the text color?
See the difference:
$GUI = GUICreate("", 100, 100)
$Button = GUICtrlCreateButton("Test", 25, 20, 50, 25)
$Button2 = GUICtrlCreateButton("Test", 25, 50, 50, 25)
GUICtrlSetColor($Button, 0xFF00FF)
GUISetState()
While 1
Switch GUIGetMsg()
Case -3
Exit
EndSwitch
WEnd