Created
June 15, 2013 01:53
-
-
Save ExpHP/5786458 to your computer and use it in GitHub Desktop.
AutoHotKey script to fix mouse buttons in hexagon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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