Reputation: 11
A simple example,
a Up::Send b
return
Pressing a DOWN does not produce an "a", it produces nothing.
I would like to have "a" in a DOWN state until it is released, at which point a single "b" is sent.
Am I misunderstanding how the Up parameter works?
Upvotes: 1
Views: 40
Reputation: 2682
Try this:
~a Up::send, b
or this:
~a::
Keywait, a
Send, b
return
or:
~a::
While (GetkeyState("a", "p"))
Continue
Send, b
return
Upvotes: 1
Reputation: 11
I have figured out the answer to my question.
~a::Send a
a Up::Send b
solves the problem.
Upvotes: 0