gpt4 book ai didi

autohotkey - Alt + Space + 自动热键中的键

转载 作者:行者123 更新时间:2023-12-04 00:37:10 26 4
gpt4 key购买 nike

如何创建 Alt + Space + C自动热键中的快捷方式? Alt + 空格是 !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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com