Autohotkey ctrl + click = right click

What will be the code to enable control + right-click?

I am running Windows 7 on a Mac and would like to control a click on a track instead of two fingers.

+5
source share
3 answers
^LButton::RButton

Very simple !: D

+7
source

The following does this for me.

^LButton::AppsKey

I would suggest that you start with the following -

http://www.autohotkey.com/docs/Tutorial.htm

http://www.autohotkey.com/docs/KeyList.htm

+2
source

Try it. This works more like a native right-click than the Juhzuri solution - a context menu appears near the cursor; It works with controls that do not match the Windows menu key ( AppsKey); and it allows you to drag and drop.

^LButton::
  Send {RButton Down}
  Return

^LButton Up::
  Send {RButton Up}
  Return
+2
source

All Articles