Durchgehend Taste mit AutoHotkey drücken?

1 Antwort

Ich habe dieses Skript, um es zu de/aktivieren Z drücken:

#MaxThreadsPerHotkey, 2
looping = 0

$z:: ;<-- the hotkey with a $ so it won't re-trigger itself
keywait, z ;<-- make sure to let go of the z key

looping := !looping
if (!looping)
   Return
loop
{   If (!looping)
        Break
    send, {w down}
    sleep, 10
}
Send, {w up}


AnonymousDeer 
Fragesteller
 14.12.2016, 19:37

Vielen Dank, es funktioniert ;)

0