mm... hi!
I also encountered this problem.
for this code, the result is "has been set".
$iRet = HotKeySet("q", "fred")
If $iRet Then
MsgBox(0, "HotKey", "has been SET")
Else
MsgBox(0, "HotKey", "has NOT been SET")
EndIf
Func fred()
EndFunc
and for this
HotKeySet("q", "fred")
While 1
Sleep(10)
WEnd
Func fred()
MsgBox(0, "q", "Pressed")
Exit
EndFunc
nothing
but keys like space or escape are read correctly
please help me