AutoIT GUICtrlSetState/GUICtrlGetState set state is different from get state
问题 i ńeed help with my code. GUICtrlSetState($input_ID_betonarna,$gui_ENABLE) ConsoleWrite(GUICtrlGetState($input_ID_betonarna)&" "& $gui_ENABLE) Output is: 80 64 Expected output is: 64 64 I know that output is sum of states but i do not have any table with GUIConstantsEx values. 回答1: Look into your AutoIt installation. In the "include" subfolder you should find the file GUIConstantsEx.au3 where those constants are defined: Global Const $GUI_SHOW = 16 Global Const $GUI_HIDE = 32 Global Const