0
votes

I need to map mouse left click to left SHIFT key and mouse right click to left ALT key for better productivity :P.

But I DO NOT want to block any of key combinations like CTRL+SHIFT, SHIFT+CTRL etc.

So far, I'm able to get Alt+Tab functionality with (LAlt & *::Suspend, On).
But can't make it work for shift key.

Issue's I need to resolve:

1) not able to type in uppercase with shift+any_key
2) key combinations not working like ctrl+shift+any_key or shift+ctrl+any_key

Here's my script so far:

LAlt & *::Suspend, On
LShift::LButton
LAlt::RButton

Holding LEFT SHIFT key simulates the left click hold which is great and would like to keep it this way.

1

1 Answers

0
votes

See modifier symbols about the tilde prefix (~) in particular.

~LShift::LButton

Hope this helps.