Hi
I tried to post on Ahk forums but I could not get any real help. I am hoping that Dc coders can crack this for bonus donation credits
What I am trying to do is,
-Xbutton1+Xbutton2=c key (sends c key)
-Xbutton1=Ctrl (when not in combo mode)
-Xbutton2=Shift (when not in combo mode)
Here is the code I am using at the moment. But the problem is that I loose the functionality of Xbutton1. Everything works except Xbutton1 as individual button.
~XButton1 & ~XButton2::Send c
XButton2::Send {Shift Down}
XButton2 Up::Send {Shift Up}
XButton1::Send {Ctrl Down}
XButton1 Up::Send {Ctrl Up}