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
Post a Comment