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.
Asked
Active
Viewed 754 times
1 Answers
0
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
-
Thanks, but it does not work properly, any other suggestions pls? – eduardobedoya Aug 18 '13 at 04:43