Is there an auto hotkey script or some preference somewhere where, in Win7, I can intercept Ctrl and + and replace with Win and +? Also an equivalent for Ctrl and - being replaced with Win and -.

link|improve this question
feedback

3 Answers

In AutoHotKey:

^+::#+ ; Replace Ctrl-[plus] with Win-[plus]

^-::#- ; Do the same with Ctrl-[dash]

Note that the code above does not cover numpad plus and minus. For those, you need the following

^numpadadd::#numpadadd

^numpadsub::#numpadsub
link|improve this answer
feedback

Win +/- acting like Ctrl +/-

LWin & +::
SendInput ^{+}
return

LWin & -::
SendInput ^{-}
return

Ctrl +/- acting like Win +/-

LCtrl & +::
SendInput #{+}
return

LCtrl & -::
SendInput #{-}
return
link|improve this answer
feedback

Autoit Code:

HotKeySet("^{+}", "Transform1") ;captures [CTRL]+[+], Triggers Transform1
HotKeySet("^{-}", "Transform2") ;captures [CTRL]+[-], Triggers Transform2

While 1 ;while loop to keep processor from maxing out
    Sleep(100)
WEnd

Func Transform1() 
    ;Send("#{+}") ;sends [WIN]+[+]
EndFunc

Func Transform2()
    ;Send("#{+}") ;sends [WIN]+[-]
EndFunc
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.