Pergunta

Im a Autohotkey nowbie, I would like to know how to switch "Ctrl Space" with "Alt Space", I mean keeping down Ctrl Space, all the time I keep down Alt Space, and release it only when I realse Alt Space. without interfering with any other mouse clicks movements. Thanks advanced.

Foi útil?

Solução

Try this. This switches both key pairs, if you don't want Alt-Space to also translate back to Ctrl-Space, just use the first two blocks.

$^Space::
Send, !{Space down}
return

$^Space up::
Send, !{Space up}
return

$!Space::
Send, ^{Space down}
return

$!Space up::
Send, ^{Space up}
return
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top