keyboard - AHK How to switch Ctrl and Shift keys -


i switch left shift , ctrl key, whenever press left shift + p ctrl p instead. when press ctrl + shift ctrl + shift (no ctrl + ctrl). mean call left shift , ctrl keys switch when press left shift in combination letters , numbers, not when press other modifiers.

i have tried far

~lshift::~lctrl 

it trick, but, scritpt whenever press lshift ctrl , left shift @ same time.

this how script should if want switch shift , ctrl completely.

$*lshift::send {lcontrol down} $*lshift up::send {lcontrol up}  $*lcontrol::send {lshift down} $*lcontrol up::send {lshift up} 

your question similar question find explanation why works.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -