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

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

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

mysql - Pass value between different pages (form) with PHP -