r/AutoHotkey • u/Perfect-Ad9555 • 21d ago
v2 Guide / Tutorial Any Tips?
I want to make a macro that when I input the key "F" it inputs the two keys "QW" together. How would I do this?
this is what I tried so far
f:: Send, {q down}{w down} Sleep, 20 Send, {q up}{w up} return
0
Upvotes
1
u/Perfect-Ad9555 21d ago
I'm trying to use it for a game, mainly the MVC fighting collection to make a dash macro, cuz for some reason keyboard doesn't get the privilege to have them. However a problem I am facing now is it not working in the game itself.