Skip to content

Instantly share code, notes, and snippets.

@RebeccaWhit3
Forked from SonicZentropy/CustomAHK.ahk
Last active March 7, 2017 11:54
Show Gist options
  • Save RebeccaWhit3/f785eb87df4951a7b72ce6715742d574 to your computer and use it in GitHub Desktop.
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
; 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