Page 1 of 1

AutoHotKey script - Move faders with Mouse Wheel

PostPosted: Thu Jul 05, 2012 1:29 pm
by shmick
This one will allow you to use the mouse wheel inside of the F, Z and W mixers in SAC to make + or - 1dB increment changes.

Code: Select all
; Use the scroll wheel for +1dB increments
;
#IfWinActive ahk_class SAC_FULLMIXER
WheelUp::Send +{Up 1}

#IfWinActive ahk_class SAC_ZOOMMIXER
WheelUp::Send +{Up 1}

#IfWinActive ahk_class SAC_WIDEMIXER
WheelUp::Send +{Up 1}
return

; Use the scroll wheel for -1dB increments
;
#IfWinActive ahk_class SAC_FULLMIXER
WheelDown::Send +{Down 1}

#IfWinActive ahk_class SAC_ZOOMMIXER
WheelDown::Send +{Down 1}

#IfWinActive ahk_class SAC_WIDEMIXER
WheelDown::Send +{Down 1}
return