Here is a modified version of that script, that only increases the scroll speed in Ableton Live 11, and no other applications. The script also improves side-scrolling performance (using SHIFT + mousewheel) which is also extremely slow by default.
I also included a fix for Cubase 11 which has a bug in where "shift + mouse wheel up" scrolls to the right, and "shift + mousewheel down" scrolls to the left, which is the opposite to any other application.
Instructions:
First, download AutoHotKey at https://www.autohotkey.com/
Then create a script called AbletonCubaseScroll.ahk (or whatever you want) and paste the following code in it. Start it by double clicking, or copy it and paste a shortcut into your Windows 10 startup folder (better).
Note! If you upgrade Ableton Live 11 to 12, or use a beta version, make sure to change the EXE file name.
Code: Select all
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Modifier keys
; ! Alt
; ^ Ctrl
; + Shift
; The $ modifier prevents autohotkey from activating this hotkey from automated input.
; It will only activate when physically rolling the scroll wheel up.
#if WinActive("ahk_exe Ableton Live 11 Suite.exe")
; Improve side-scrolling performance in Ableton Live
+WheelDown::
Send +{WheelDown 10}
Return
+WheelUp::
Send +{WheelUp 10}
Return
; Improve up/down side-scrolling performance in Ableton Live
$WheelDown::
Send {WheelDown 5}
Return
$WheelUp::
Send {WheelUp 5}
Return
#if WinActive("ahk_exe Cubase11.exe")
; Swap SHIFT + Mousewheel up with SHIFT + Mousewheel down
+WheelDown::
Send +{WheelUp}
Return
+WheelUp::
Send +{WheelDown}
Return