如何在 autohotkey 中创建 Alt + Space + C
快捷方式? Alt + Space 是 !space
但我不知道如何添加第三个键而不会出错。
最佳答案
您可以将 #If
指令(需要 AHK_L)与 GetKeyState()
函数结合使用:
#If GetKeyState("Alt", "p")
Space & c::Traytip,, % a_thishotkey
#If
或者您可以使用
Keywait
命令:!space::
keywait, c, d, t0.6
If ErrorLevel
Traytip,, Alt and space
Else
Traytip,, Alt space and c
Return
如果您不按 C,这也会在 0.6 秒后触发 Alt+space 结果。
如果这是不受欢迎的,你可以这样写:
!space::
keywait, c, d, t0.6
If (!ErrorLevel) {
Traytip,, Alt space and c
Sleep, 2000
Traytip,, % a_thishotkey
} Return
!ErrorLevel
的意思是“不是 ErrorLevel”关于autohotkey - Alt + Space + 自动热键中的键,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11986814/