hey guys, a friend of mine needs help with hotkeys.
this is his script:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=Form1.kxf
$Form1 = GUICreate("", 215, 235, 299, 218)
$Checkbox1 = GUICtrlCreateCheckbox("Checkbox1", 112, 16, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Checkbox2", 112, 40, 97, 17)
$Checkbox3 = GUICtrlCreateCheckbox("Checkbox3", 112, 64, 97, 17)
$Checkbox4 = GUICtrlCreateCheckbox("Checkbox4", 112, 88, 97, 17)
$Checkbox5 = GUICtrlCreateCheckbox("Checkbox5", 112, 112, 97, 17)
$Checkbox6 = GUICtrlCreateCheckbox("Checkbox6", 112, 136, 97, 17)
$Checkbox7 = GUICtrlCreateCheckbox("Checkbox7", 112, 160, 97, 17)
$Checkbox8 = GUICtrlCreateCheckbox("Checkbox8", 112, 184, 97, 17)
$Label1 = GUICtrlCreateLabel("Hot Key Ctrl+1", 8, 16, 72, 17)
$Label2 = GUICtrlCreateLabel("Hot Key Ctrl+2", 8, 40, 72, 17)
$Label3 = GUICtrlCreateLabel("Hot Key Ctrl+3", 8, 64, 72, 17)
$Label4 = GUICtrlCreateLabel("Hot Key Ctrl+4", 8, 88, 72, 17)
$Label5 = GUICtrlCreateLabel("Hot Key Ctrl+5", 8, 112, 72, 17)
$Label6 = GUICtrlCreateLabel("Hot Key Ctrl+6", 8, 136, 72, 17)
$Label7 = GUICtrlCreateLabel("Hot Key Ctrl+7", 8, 160, 72, 17)
$Label8 = GUICtrlCreateLabel("Hot Key Ctrl+8", 8, 184, 72, 17)
$Label9 = GUICtrlCreateLabel("Hot Key For Open and Close Alt+1", 8, 208, 165, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
he said that when he presses any hotkey it dsnt works...