Page 1 of 1

Simple Right Click Request

Posted: 11 Jul 2019, 19:15
by Right Click
Hello, I am using my surfacebook and love it for playing games (currently playing Antichamber on steam).

However, I got to a part of the game where you have to hold down right-click to progress. The only way to accomplish this is by enabling the "Press the lower right corner of the touchpad to right-click" option, in the touchpad settings. I really dislike this setting. I also must be one of the few people who hates using two finger options on the trackpad.

On Mac OS, I loved having the ability to use ctrl+click (or some equivalent) as an option to right click in everything. I downloaded AHK this morning, and I am trying to learn/research the code to achieve this, as I feel it would be easy, but I can't seem to find a way to do this. Anyone have a suggestion?

Re: Simple Right Click Request  Topic is solved

Posted: 11 Jul 2019, 19:31
by wolf_II
Try this:

Code: Select all

^LButton:: RButton
I hope that helps.

^ means Ctrl
the one-liner defines a remapping for Ctrl + LeftMouseButton to yield RightMouseButton

Re: Simple Right Click Request

Posted: 11 Jul 2019, 19:36
by Right Click
wolf_II wrote:
11 Jul 2019, 19:31
Try this:

Code: Select all

^LButton:: RButton
I hope that helps.

^ means Ctrl
the one-liner defines an hotkey for Ctrl + LeftMouseButton
I swear I tried this earlier, and couldn't get it to work. Despite my own ineptitude, it is working EXACTLY like how I wanted. Bless you.