or
#include <GUIConstants.au3>
#include <Misc.au3>
Global $a[5]
$GUI = GuiCreate("")
$a[0] = GuiCtrlCreateButton("", 10, 10, 100, 100)
$a[1] = GuiCtrlCreateButton("", 110, 10, 100, 100)
$a[2] = GuiCtrlCreateButton("", 210, 10, 100, 100)
$a[3] = GuiCtrlCreateButton("", 10, 110, 100, 100)
$a[4] = GuiCtrlCreateButton("", 110, 110, 100, 100)
GuiSetState()
While 1
$msg = GuiGetMsg()
If BitAND(_IsPressed("11"),_ISpressed("4E")) Then
If GUICtrlGetState($a[0]) = 80 Then
For $i = 0 to 4
GuiCtrlSetState($a[$i],$GUI_DISABLE)
Next
Sleep(100)
Elseif GUICtrlGetState($a[0]) = 144 Then
For $i = 0 to 4
GuiCtrlSetState($a[$i],$GUI_ENABLE)
Next
Sleep(100)
EndIf
EndIf
If $msg = $GUI_EVENT_CLOSE Then Exit
WEnd