Skip to content

Instantly share code, notes, and snippets.

@ExpHP
Created June 15, 2013 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ExpHP/5786458 to your computer and use it in GitHub Desktop.
Save ExpHP/5786458 to your computer and use it in GitHub Desktop.
AutoHotKey script to fix mouse buttons in hexagon
lb := 0
rb := 0
SetMouseDelay,0
LButton::
Click down
lb := 1
return
RButton::
Click down right
rb := 1
return
LButton UP::
Click up
lb := 0
If rb
Click down right
return
RButton UP::
Click up right
rb := 0
If lb
Click down
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment