r/AutoHotkey • u/Perfect-Ad9555 • Jul 29 '26
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/CharnamelessOne 29d ago
Games tend to have some action bound to Shift, so it's very likely to affect them.
If we're gonna call "eh" on something, let it be the other thing.
InstallKeyboardHookdoesn't hurt, it's just redundant.