Page 1 of 1

AutoHotKey script - momentary MON mixer select

PostPosted: Thu Jul 05, 2012 1:33 pm
by shmick
This one is from kdiamond from the original forum:

I also use AHK to select MON mixers while holding the key down. When releasing the key it goes back to FOH mixer. Great for adjusting MON Mixer levels on the fly.

Usage:
Numpad 1 - triggers Alt F1 Fkey (my case MON 1). When Numpad 1 is release it goes back to FOH
Numbad Dot + Numpad 1 - triggers Alt F1 Fkey (my case MON 1) and stays there
Alt + Numpad 1 - triggers Alt F1 Fkey (my case MON 1) and stays there

Example code:

Code: Select all
#MaxHotKeysPerInterval 200
#MaxThreadsPerHotkey 1
#SingleInstance Force

Numpad1::
Send !{F1}
KeyWait, Numpad1
Send !{F10}
Goto, End

<^>!Numpad1::
Send !{F1}
Goto, End

NumpadDot & Numpad1::
Send !{F1}
Goto, End

Goto, End