Suche ein AutoIt script das dauerhaft pfeiltaste drückt also nicht gedrückt hält sondern mehrmals hintereinander ohne das es aufhört und das ich es ausschalten kann mit f1-f2
HotKeySet("{F1}","_Start")
HotKeySet("{F2}","_Stop")
while Sleep(10)
WEnd
Func _Start()
While True
Send("{UP}")
WEnd
EndFunc
func _Stop()
Exit
EndFunc
HotKeySet("{F1}","_Start")
HotKeySet("{F2}","_Stop")
while Sleep(10)
WEnd
Func _Start()
While True
Send("{UP}")
WEnd
EndFunc
func _Stop()
ShellExecute(@ScriptFullPath)
Exit
EndFunc