更正我的 AutoHotKey 循环脚本
Correct my AutoHotKey Loop Script
在设置一个简单的 AutoHotKey 循环时遇到了一些麻烦,该循环将按下键盘上的按钮 1、2、3 和 4,中间有 16 秒的暂停。我不需要切换,我知道这会使事情复杂化(我将手动 stop/pause 脚本)。
这是我目前所做的,但似乎只是让 1 按钮不可用。该脚本似乎确实是 运行,但当我在文本 window 中测试它时,它似乎没有激活按钮。任何帮助将不胜感激。
::
freq:=16000
Loop
(
Send (1)
Sleep %freq%
Send (2)
Sleep %freq%
Send (3)
Sleep %freq%
Send (4)
)
return
试试这个:
::
freq:=16000
Loop
{
Send, 1
Sleep %freq%
Send, 2
Sleep %freq%
Send, 3
Sleep %freq%
Send, 4
}
return
在设置一个简单的 AutoHotKey 循环时遇到了一些麻烦,该循环将按下键盘上的按钮 1、2、3 和 4,中间有 16 秒的暂停。我不需要切换,我知道这会使事情复杂化(我将手动 stop/pause 脚本)。
这是我目前所做的,但似乎只是让 1 按钮不可用。该脚本似乎确实是 运行,但当我在文本 window 中测试它时,它似乎没有激活按钮。任何帮助将不胜感激。
::
freq:=16000
Loop
(
Send (1)
Sleep %freq%
Send (2)
Sleep %freq%
Send (3)
Sleep %freq%
Send (4)
)
return
试试这个:
::
freq:=16000
Loop
{
Send, 1
Sleep %freq%
Send, 2
Sleep %freq%
Send, 3
Sleep %freq%
Send, 4
}
return