How do I setup autohotkey so that it repeats the keys on the numpad? Here's the naive version of it:
{
keys = 23456790.-+/* ; all the keys you want to accelerate
Loop Parse, keys
Hotkey *%A_LoopField%, KEY
Return
KEY:
StringRight key, A_ThisHotKey, 1
t := 0.11 ; initial delay [seconds]
Loop {
Send {BLIND}{RAW}%key%
KeyWait %key%, T%t%
If ErrorLevel = 0
Break
t := t > 0.12 ? t*0.79 : 0.115 ; delay *= 0.80, while delay > 0.02
}
return
}
I had hoped that just replacing "2" with "{Numpad2}" (and similarly in the other slots) would do the trick, but it doesn't.