문제

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