Skip to content

Instantly share code, notes, and snippets.

@SonicZentropy
Created March 15, 2016 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save SonicZentropy/7930644a506776eae668 to your computer and use it in GitHub Desktop.
Save SonicZentropy/7930644a506776eae668 to your computer and use it in GitHub Desktop.
Ableton AHK Script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#KeyHistory 100
; #Warn ; Enable warnings to assist with detecting common errors.
SetTitleMatchMode, fast
SetTitleMatchMode, 2
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#Persistent
#IfWinActive Ableton Live 9 Suite
^WheelUp::
Send {NumpadAdd}
^WheelDown::
Send {NumpadSub}
#IfWinActive
@genmce
Copy link

genmce commented Jan 14, 2019

I have been experimenting with adding mouse to faders and other selected controls

$+WheelDown::Send {down 4} ; ===============SHIFT + wheel TO MOVE SELECTED ELEMENT (FADER, PAN AND CONTROLS)-4db
$+Wheelup:: Send {up 4}

I tried using click to select item but it does not seem to work with faders
$+WheelDown::Send {click}{down 4} ; ===============SHIFT + wheel TO MOVE SELECTED ELEMENT (FADER, PAN AND CONTROLS)-4db
$+Wheelup:: Send {click}{up 4}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment