Cheers chaps.
Anyway... had a little spare time to look into this and have found a third party solution.
Got AutoHotkey from
http://www.autohotkey.com/and edited the AutoHotkey.ahk script with the following two lines:
- Code: Select all
MButton::send {Lshift down}
MButton UP::send {Lshift up}
Just a simple case of running AutoHotkey before starting AoS - and not forgetting to close it after finishing an AoS session of course :-)
UPDATEDIf this thread has been of interest/use to anybody, I had to change the script from the above as it was randomly locking the PC up for a few minutes after closing AOS. Luckily somebody at the AutoHotkey forums suggested a better way:
- Code: Select all
#IfWinActive, Ace of Spades
MButton::LShift
#IfWinActive
...which is also handy in that middle mouse behaviour will return to normal when you quit AOS and don't quit AHK afterwards. (well.. apart from when browsing this forum, since the active window has "Ace of Spades" in it). Hope that doesn't sound overcomplicated for anybody.