gpt4 book ai didi

AutoHotKey KeyWait 语句

转载 作者:行者123 更新时间:2023-12-04 05:03:01 24 4
gpt4 key购买 nike

我正在使用 AutoHotKey,我想实现一些特定的目标。

我有一个应该执行特定操作的热键,在这个热键中,我想编写一些代码来检测我是只按“C”键,还是按“C”然后按“L”键。

如果只按下了“C”键,那么它应该执行一个 Action ,否则,如果按下“C”然后“L”键,它应该执行另一个 Action 。

但我不能这样做,因为我不太了解 KeyWait,我的意思是我怎么能做这样的事情:

if(KeyWait, C){
firstAction
else {
if(KeyWait, C){
if(KeyWait, L){
anotherAction
}
}

最佳答案

使用 input 解决功能。

; Get one character and store it in the Character variable
Input, Character, L1
If Character = C
{
; Give up to half of one second to type L
Input, Character, L1 T0.5
If Character = L
MsgBox % "We have C and L"
else
MsgBox % "Just C here, give an L next time"
}

关于AutoHotKey KeyWait 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15882713/

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