Open Side Menu Go to the Top
Register
AHK key combo (three key combo)?? AHK key combo (three key combo)??

06-19-2011 , 11:56 AM
I would like to make a triple key combination to execute an action

ALT + XButton1 + RButton

Is this possible?

I tried !XButton1 & RButton but it doesnt seem to work.
I also tried ! & XButton1 & RButton but same result.

ty
AHK key combo (three key combo)?? Quote
06-19-2011 , 03:08 PM
i dont know if you saw my response in the StackAndTile thread, but i posted a solution:

http://forumserver.twoplustwo.com/sh...postcount=3184
AHK key combo (three key combo)?? Quote
06-19-2011 , 03:16 PM
!XButton1 & RButton:: should work, have no Xbutton myself, but works when I switch it with the MButton. Keys must be pressed down in correct order though it seems. Alt, then Xbuton1 then Rbutton (while holding down the other keys).
AHK key combo (three key combo)?? Quote
06-19-2011 , 04:03 PM
Quote:
Originally Posted by Mr_Burt
!XButton1 & RButton:: should work, have no Xbutton myself, but works when I switch it with the MButton. Keys must be pressed down in correct order though it seems. Alt, then Xbuton1 then Rbutton (while holding down the other keys).
no idea how youre doing this. this fails for me on both ahk basic and _L:

Code:
!a & b::
  msgbox Alt+a & b
return
only work around for three buttons that i know of is the one i posted above
AHK key combo (three key combo)?? Quote
06-19-2011 , 04:31 PM
Thanks both.. forn ow i can wait, this hotkey I need for bet + Stack ;-)..
AHK key combo (three key combo)?? Quote
06-19-2011 , 08:02 PM
It works fine with two modifiers eg !+a or like Greg suggested
Code:
~XButton1 & RButton::
if GetKeyState("Alt")
  msgbox Alt+XButton1 & RButton
return

Last edited by Max1mums; 06-19-2011 at 08:13 PM.
AHK key combo (three key combo)?? Quote

      
m