lawonama 0 Posted August 7, 2011 Hi all, i have this: But it wont work GuiCreate("window", 370, 330) GUICtrlSetBkColor(-1, 0x000000) Plus i have this: GuiCtrlCreateLabel("- #1", 305, 13) How to make that - #1 white? Share this post Link to post Share on other sites
wakillon 403 Posted August 7, 2011 (edited) Try $_Gui = GuiCreate("window", 370, 330) GUISetBkColor( 0x000000) $_Label = GuiCtrlCreateLabel("- #1", 305, 13) GUICtrlSetColor(-1, 0xFFFFFF) Edited August 7, 2011 by wakillon AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
lawonama 0 Posted August 7, 2011 The first one didn't work, And the second one just made the background of - #1 white. Not the text Share this post Link to post Share on other sites
wakillon 403 Posted August 7, 2011 The first one didn't work,And the second one just made the background of - #1 white. Not the textCorrected.Retry. AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites