You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AutoHotInterception/AHK v2/Context Example.ahk

28 lines
370 B
Plaintext

#SingleInstance force
Persistent
#include Lib\AutoHotInterception.ahk
AHI := AutoHotInterception()
id1 := AHI.GetKeyboardId(0x04F2, 0x0112, 1)
cm1 := AHI.CreateContextManager(id1)
return
#HotIf cm1.IsActive
::aaa::JACKPOT
1::
{
ToolTip("KEY DOWN EVENT @ " A_TickCount)
return
}
1 up::
{
ToolTip("KEY UP EVENT @ " A_TickCount)
return
}
#HotIf
^Esc::
{
ExitApp
}