所以我不知道我到底在做什么,但我需要一个非常简单的脚本的帮助。
基本思想是按一个键,例如 k,每秒四次,重复直到使用命令 (Alt-x) 关闭脚本。
我正在使用 Autohotkey 脚本编辑器。
所以我不知道我到底在做什么,但我需要一个非常简单的脚本的帮助。
基本思想是按一个键,例如 k,每秒四次,重复直到使用命令 (Alt-x) 关闭脚本。
我正在使用 Autohotkey 脚本编辑器。
您可以使用计时器。
示例代码:
F1:: ;key that launches this code
SetTimer, SendKeyK,250 ;set timer to repeat every 250 miliseconds
return ;end
F2::
SetTimer, SendKeyK,Off ;turn of the timer
return
SendKeyK:
Send, {k} ;timer sends (presses) the key k
return
如您所见,无需退出脚本。