【发布时间】:2018-03-18 21:07:58
【问题描述】:
我想使用组合键 ⊞ Win+Shift+Alt 激活脚本。我该怎么做?
这是我目前所拥有的:
Space::
Run, App
#Persistent
SetTimer, PressTheKey1, 500
SetTimer, PressTheKey2, 0
PressTheKey1:
Send, {click}
Return
PressTheKey2:
Send, {t}
Return
Escape::
ExitApp
Return
【问题讨论】:
-
我认为仅使用 Win、Shift 和 Alt 键来触发脚本是不可能的。 Win、Shift 和 Alt 都被认为是
Modifiers,这意味着它们需要与Hotkey配对才能生效。Hotkeys的一些示例是:键盘上的常规字母键、数字键盘上的数字、F1 到 F12 键、Enter、空格 -
好的,如果我想赢得 shift-4,代码是什么?
标签: autohotkey hotkeys