DavidtheGoat123
DavidtheGoat123

Reputation: 23

is it possible to have an ahk script interval for less than a millisecond?

pause

#Persistent
SetTimer, PressTheKey, 1
Return

PressTheKey:
Send, {\}
Return


F1::

pause 

This is what I have so far. I use the script to help me make ASCII art faster. is it possible to make the interval faster...less than 1 millisecond?

Upvotes: 0

Views: 455

Answers (1)

Joel Fazio
Joel Fazio

Reputation: 172

As far as I'm aware, there is no unit smaller than 1ms when dealing with timers. You could just use a loop in place of a timer, or try changing the SetBatchLines value: https://autohotkey.com/docs/commands/SetBatchLines.htm

Upvotes: 1

Related Questions