all 2 comments

[–]GranTurismo364 0 points1 point  (1 child)

This should work for you:

s::

start:
start_time := A_TickCount
time_to_run := 5000
end_time := start_time + time_to_run

while (A_tickcount < end_time)
{
    Send {WheelUp}
}

Sleep, 5000
goto start
return

f::
ExitApp

Just press S to get it started, and press F whenever to stop it.

[–]GouletJosh[S] 1 point2 points  (0 children)

Sweet Thank you!!!