mirror of
https://github.com/evilC/AutoHotInterception.git
synced 2024-11-12 13:10:47 +00:00
33 lines
602 B
AutoHotkey
33 lines
602 B
AutoHotkey
#SingleInstance force
|
|
#Persistent
|
|
#include Lib\AutoHotInterception.ahk
|
|
|
|
global AHI := new AutoHotInterception()
|
|
|
|
keyboardId := AHI.GetKeyboardId(0x04F2, 0x0112)
|
|
|
|
AHI.SubscribeKey(keyboardId, GetKeySC("2"), true, Func("KeyEvent"))
|
|
|
|
cm1 := AHI.CreateContextManager(keyboardId)
|
|
return
|
|
|
|
KeyEvent(state){
|
|
static ctrlCode := GetKeySC("Ctrl")
|
|
global keyboardId
|
|
;~ AHI.SendKeyEvent(keyboardId, ctrlCode, state)
|
|
ToolTip % "State: " state
|
|
}
|
|
|
|
#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 |