; GET BACK ALT GR ; -> Remaps ALT GR to CTRL+ALT so you can perform the CTRL+ALT+U hotkey with one hand. ; !! Only relevant for some international keyboard layouts. You know if this is for you. #Requires AutoHotkey v2.0 #SingleInstance Force SendMode("Input") SetWorkingDir(A_ScriptDir) SetTitleMatchMode(2) #HotIf ((WinActive("ahk_class Ableton Live Window Class") or WinActive("ahk_class Vst3PlugWindow") or WinActive("ahk_class AbletonVstPlugClass")) and not WinActive("Melodyne")) ; this block is now only active in Ableton Live, unless you use Melodyne, where you don't need this remapping. *RAlt:: { Send("{LAlt down}") Send("{LControl down}") } *RAlt up:: { Send("{LAlt up}") Send("{LControl up}") } #HotIf ; April 2026 — Released under MIT license by Yannis Lever ; This code is provided as-is with no warranty. Use at your own risk. ; Check out www.livehack.tools for more LiveHacks!