Pregunta

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.

¿Fue útil?

Solución

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?

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top