CyberSlug Posted November 2, 2004 Posted November 2, 2004 GUICtrlSetColor returns a "success" value for the button control, but the text did not change color GuiCreate("ExampleFoo") $button = GuiCtrlCreateButton("Should be red", 10, 10, 100, 100) $returnVal = GUICtrlSetColor($button, 0xFF0000) WinSetTitle("ExampleFoo","","Return value == " & $returnVal) GuiSetState() While GuiGetMsg() <> -3 WEnd Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
jpm Posted November 2, 2004 Posted November 2, 2004 CyberSlug said: GUICtrlSetColor returns a "success" value for the button control, but the text did not change colorGuiCreate("ExampleFoo") $button = GuiCtrlCreateButton("Should be red", 10, 10, 100, 100) $returnVal = GUICtrlSetColor($button, 0xFF0000) WinSetTitle("ExampleFoo","","Return value == " & $returnVal) GuiSetState() While GuiGetMsg() <> -3 WEnd<{POST_SNAPBACK}>true but we cannot paint it as stated in Windows API doc Quote Buttons with the BS_PUSHBUTTON, BS_DEFPUSHBUTTON, or BS_PUSHLIKE styles do not use the returned brush.I will correct the return
CyberSlug Posted November 2, 2004 Author Posted November 2, 2004 jpm said: true but we cannot paint it as stated in Windows API docI will correct the return <{POST_SNAPBACK}>Sounds good Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Angel Posted November 5, 2004 Posted November 5, 2004 Does this mean that it is not possible to use colored buttons with AutoGui? I like colors!
jpm Posted November 6, 2004 Posted November 6, 2004 Angel said: Does this mean that it is not possible to use colored buttons with AutoGui? I like colors! <{POST_SNAPBACK}>I like colors too but in autoit we do not reimplement windows API. So we cannot find one to do what we want we stay with what we found.In this specific case the API we are using does not allow to paint button text.
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