mirror of
https://github.com/evilC/AutoHotInterception.git
synced 2024-11-16 21:25:46 +00:00
22 lines
360 B
AutoHotkey
22 lines
360 B
AutoHotkey
#SingleInstance force
|
|
#Persistent
|
|
#include Lib\AutoHotInterception.ahk
|
|
|
|
AHI := new AutoHotInterception()
|
|
id1 := AHI.GetKeyboardId(0x04F2, 0x0112, 1)
|
|
cm1 := AHI.CreateContextManager(id1)
|
|
return
|
|
|
|
#if cm1.IsActive
|
|
::aaa::JACKPOT
|
|
1::
|
|
ToolTip % "KEY DOWN EVENT @ " A_TickCount
|
|
return
|
|
|
|
1 up::
|
|
ToolTip % "KEY UP EVENT @ " A_TickCount
|
|
return
|
|
#if
|
|
|
|
^Esc::
|
|
ExitApp |