My searching of the forums it is still not clear if this is allowed.
I want to combine the jump key with other commands, However I find that just sending the command does not work, even if just the command is sent. The jump key needs some delay of being held pressed for the jump action to actually occur.
So my proposed solution is to take advantage of some of the inherent delay in AHK. So my example
This basically start of with pressing the jump key, then hold it down while next hitting the face key and then releases the jump key. Is this legal even though it uses some delay in the AHK sequence?
Thanks
I want to combine the jump key with other commands, However I find that just sending the command does not work, even if just the command is sent. The jump key needs some delay of being held pressed for the jump action to actually occur.
So my proposed solution is to take advantage of some of the inherent delay in AHK. So my example
; Face and Jump
Hot_Key::
send { Jump_Key down}
send Face_Key
send {Jump_Key up}
return
This basically start of with pressing the jump key, then hold it down while next hitting the face key and then releases the jump key. Is this legal even though it uses some delay in the AHK sequence?
Thanks