; BLOCK F-KEYS ; -> Blocks F1–F8 while a specific plugin is open so you stop accidentally triggering Ableton shortcuts. #Requires AutoHotkey v2.0 #SingleInstance Force SendMode("Input") SetWorkingDir(A_ScriptDir) SetTitleMatchMode(2) ; Change plugin name to taste or add more. #HotIf WinActive("Melodyne") F1::return F2::return F3::return F4::return F5::return F6::return F7::return F8::return #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!