BlackBerryx3 Posted June 26, 2013 Share Posted June 26, 2013 $checkbox1 = GUICtrlCreateCheckbox("0 Gravity", 0, 80, 97, 17) Thats the one code of my script. how do i grey out checkboxes ? any example ? Link to comment Share on other sites More sharing options...
FireFox Posted June 26, 2013 Share Posted June 26, 2013 Hi,You need to change the state of your checkbox with the GUICtrlSetState function.#include <GUIConstantsEx.au3> ... GUICtrlSetState($checkbox1, $GUI_DISABLED)It seems like the purpose of your script breaks the forum rules (no game automation here) but you're not asking help for this so you're lucky Br, FireFox. BlackBerryx3 1 Link to comment Share on other sites More sharing options...
BlackBerryx3 Posted June 26, 2013 Author Share Posted June 26, 2013 Hi, You need to change the state of your checkbox with the GUICtrlSetState function. #include <GUIConstantsEx.au3> ... GUICtrlSetState($checkbox1, $GUI_DISABLED) It seems like the purpose of your script breaks the forum rules (no game automation here) but you're not asking help for this so you're lucky Br, FireFox. Oh. I'm sorry about the forum rules. thank you , my problem solved Link to comment Share on other sites More sharing options...
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