BlackBerryx3 Posted June 26, 2013 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 ?
FireFox Posted June 26, 2013 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
BlackBerryx3 Posted June 26, 2013 Author 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
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