是否有可能有一个ahk脚本间隔小于一毫秒?

时间:2018-06-10 20:07:45

标签: autohotkey

pause

#Persistent
SetTimer, PressTheKey, 1
Return

PressTheKey:
Send, {\}
Return


F1::

pause 

这是我到目前为止所拥有的。我使用脚本来帮助我更快地制作ASCII艺术。是否有可能使间隔更快...小于1毫秒?

1 个答案:

答案 0 :(得分:1)

据我所知,在处理定时器时没有小于1ms的单位。您可以使用循环代替计时器,或尝试更改SetBatchLines值:https://autohotkey.com/docs/commands/SetBatchLines.htm