Press same key repeatedly

Striblich

New Member
I have a program that forces me to press the same key again and again but quite frankly it's starting to get on my nerves. So I was wondering if anyone knew a software that could do something like this:

Press F5
Wait x seconds
Loop

Thanks in advance.
 
Last edited:
I have a hotkey program that allows that. If you tell me the time and how many time to press f5, it would be simple to build into an exe...
 
do while 1
sendkeys "{F11}"
doevents
loop


that will run forever and youd have to press ctrl+break to stop the macro running

:D
 
Back
Top