Skip to content

Instantly share code, notes, and snippets.

@genmce
Forked from SonicZentropy/CustomAHK.ahk
Last active January 14, 2019 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genmce/e71d25ee50d6b45c6b466ff964875db5 to your computer and use it in GitHub Desktop.
Save genmce/e71d25ee50d6b45c6b466ff964875db5 to your computer and use it in GitHub Desktop.
Ableton AHK Script
; Last edited 1/14/2019 5:04 PM by genmce;
;*****************************************************************
; Made some minor changes and adding faders/controls
;*****************************************************************
#Persistent
#SingleInstance, force
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetTitleMatchMode, fast
SetTitleMatchMode, 2
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#Persistent
#IfWinActive Ableton Live ;Make it so it will work with any Live version
; =============== ZOOM ON MOUSE WHEEL; ===============
^WheelDown:: Send {NumpadSub} ; =============== CTRL + MOUSE WHEEL ZOOM OUT
^WheelUp:: Send {NumpadAdd} ; =============== ZOOM IN
; =============== FADERS OR KNOBS ON MOUSE WHEEL ; ===============
+WheelDown::Send {down 4} ; ===============SHIFT + wheel TO MOVE SELECTED ELEMENT (FADER, PAN AND CONTROLS)-4db
+Wheelup:: Send {up 4}
; =============== ADD EQ8 ON SELECTED TRACK WITH NUMPAD 1 ; ===============
Numpad1:: ; =============== add an eq 8 to selected track
Send, ^f
Send, EQ Eight
Sleep, 150
Send, {Down down}
Sleep, 50
Send, {Enter}
Send, ^f
Send, {Escape}
return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment