keyboard keys

sunisinus

Active Member
Oct 6, 2017
507
175
i am looking for something that holds down the keyboard keys, spacebar and left shift and also Z. i don't want them to be released but just pressed for a long time.
 

scrumbles

Engaged Member
Jan 12, 2019
2,328
2,419
I don't use Windows anymore, but I remember I could do some nice tricks with Autohotkey: like emulating keystrokes, for instance.
Here's a few results from Google:

Just spend a few minutes on a tutorial to understand how a script work.
The list of keys:
 

kardagha

New Member
Mar 14, 2017
5
1
Seconding Autohotkey. You can do something like a toggle:

Code:
macro_on := 0
return

x::
	macro_on := !macro_on
	if (macro_on)
		Send {Space Down}
	else
		Send {Space Up}
	return
 
  • Like
Reactions: scrumbles
Dec 1, 2020
132
761
Auto key presser (I'm not making this up) looks like a free utility that would do what you want and have a bunch more options.