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.

有帮助吗?

解决方案

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
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top