I have a 4 button mouse and am trying to manage complex, extensive MMO spell rotations quickly by mapping a combination of modified clicks to the 1-8 keys.
My goal is:
- While holding down (3rd Mouse Button) XButton1, Left Click = 1 Key.
- While holding down (3rd Mouse Button) XButton1, Right Click = 2 Key.
- While holding down (4th Mouse Button) XButton2, Left Click = 3 Key.
- While holding down (4th Mouse Button) XButton2, Right Click = 4 Key.
- While holding down (3rd Mouse Button) XButton1 and Shift, Left Click = 5 Key.
- While holding down (3rd Mouse Button) XButton1 and Shift, Right Click = 6 Key.
- While holding down (3rd Mouse Button) XButton2 and Shift, Left Click = 7 Key.
- While holding down (3rd Mouse Button) XButton2 and Shift, Right Click = 8 Key.
XButton1 & LButton::
Send 1
XButton1 & RButton::
Send 2
XButton2 & LButton::
Send 3
XButton2 & RButton::
Send 4
XButton1 & +LButton::
Send 5
XButton1 & +RButton::
Send 6
XButton2 & +LButton::
Send 7
XButton2 & +RButton::
Send 8
I'm getting an invalid hotkey error at line 9. I'm completely new to AutoHotkey so this may be all wrong, I'm not sure.
return
. – phil294