Question

Is there a way to make a hotkey with a modifier that doesn't automatically put the modifier on the output key? ex: ^a::b -- except, when I hit ctrl+a it just gives me ctrl+b, when I just want ctrl+a to = b.

Playing a game which for some reason won't let me use hotkey ctrl + keys so I'm circumventing the issue by setting the hotkeys as something out of the way then setting the actual hotkey I want to those keys in autohotkey.

Was it helpful?

Solution

Try:

^a::
Send, b
Send, c
Send, d
Return

or

^a::Send, bcd

Could you show the exact text of line 4 that causes the error?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top