Hexagon Zooming Tweak (autohotkey)
Netherworks
Posts: 34
Been trying to get into Hex more but it doesn't seem like it wants to pick up my mouse zoom (Microsoft Mobile 4000) so I wrote a very simple script that remaps the wheel up and wheel down to keypad 3 and keypad dot when Hexagon is in focus.
You need autohotkey for this to work. http://www.autohotkey.com/
; Simple Hexagon Zooming Script
#IfWinActive Hexagon ahk_class wxWindowClassNR
WheelUp::Numpad3
WheelDown::NumpadDot
Just copy/paste this to a text editor and save as "Hexagon_Zoom.akh" and then run that file.
Post edited by Netherworks on