diff --git a/v2/Subscription Example.ahk b/v2/Subscription Example.ahk new file mode 100644 index 0000000..34779c9 --- /dev/null +++ b/v2/Subscription Example.ahk @@ -0,0 +1,18 @@ +#SingleInstance force +Persistent +#include Lib\AutoHotInterception.ahk + +AHI := AutoHotInterception() + +keyboardId := AHI.GetKeyboardId(0x04F2, 0x0112) +AHI.SubscribeKey(keyboardId, GetKeySC("1"), true, KeyEvent) +return + +KeyEvent(state){ + ToolTip("State: " state) +} + +^Esc:: +{ + ExitApp +} \ No newline at end of file