如何在AutoHotkey中使用Win + Shift + Alt作为热键?

时间:2017-10-07 03:01:18

标签: autohotkey hotkeys

我想使用组合键⊞Win + Shift + Alt 激活脚本。我该怎么做?

这是我到目前为止所做的:

Space::
    Run, App

#Persistent
SetTimer, PressTheKey1, 500
SetTimer, PressTheKey2, 0

PressTheKey1:
    Send, {click}
Return

PressTheKey2:
    Send, {t}
Return

Escape::
    ExitApp
Return

1 个答案:

答案 0 :(得分:0)

WinShift4组合用作Hotkey

#+4::
    ; Your script here