Help from someone experienced with autohotkey scripts

Started by MiraMirror, January 02, 2017, 10:36:25 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

MiraMirror

Hey, so I'm trying to figure out how to design a script that would more or less act like a hotkey, performing the desire button input at the push of a single button.

For instance, pressing A would simulate pressing Down Down X.

I've been trying to make it myself, but I'm also awful at AHK stuff, so no dice.  This is what I have so far:

SendMode, Input
a::
setkeydelay, 17, 17
sleep, 18
send {down down}{x}
Return
On's and Offs -  Please read before asking for a story <3

Vekseid

I think you need a comma after send.


^j::
   Send, {down}{down}{x}
Return


works for me, for example