-
-
Save RebeccaWhit3/f785eb87df4951a7b72ce6715742d574 to your computer and use it in GitHub Desktop.
Autohotkey Script for Ableton Live 9 Suite (basic example) • Scroll to zoom for Clip View & Arrangement. Forked from: https://gist.github.com/SonicZentropy/7930644a506776eae668
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Ableton Live 9 Suite | |
; Scroll to zoom for Clip View & Arrangment | |
; https://gist.github.com/SonicZentropy/7930644a506776eae668 | |
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment