autocomplex Posted September 6, 2007 Posted September 6, 2007 $PCRadio = GUICtrlCreateRadio("POWER Cutter", 162, 110, 95, 15) GUICtrlSetFont(-1, 8, 400, 0, "@Arial Unicode MS") GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetBkColor(-1, 0x0F0000) I'm creating a radio button, in a GUI with a black background, and all the text is white. But the text in the radio button wont change to white it stays black, and a white background wont work. Any help? Want Runescape Specific Scripts and Bots?Visit AutoIt Runescape Team (ARST) forum!
Valuater Posted September 6, 2007 Posted September 6, 2007 Maybe... #include<guiconstants.au3> GUICreate("") $PCRadio = GUICtrlCreateRadio("", 162, 110, 15, 15) $PCLabel = GUICtrlCreateLabel("POWER Cutter", 177, 110, 95, 15) GUICtrlSetFont(-1, 8, 400, 0, "@Arial Unicode MS") GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetBkColor(-1, 0x0F0000) GUISetState() While 1 If GUIGetMsg() = -3 then Exit WEnd 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now