No internet connection
  1. Home
  2. How to

set marker and rename marker in ableton with one macro

By toon bosschaert @toon_bosschaert
    2022-02-18 15:07:00.617Z

    Hi, I want to set a marker in the arrangements view of ableton and then click right and at the end rename te marker. This is my code: I got "l" (small L) as key command programmed in ableton it self

    sf.ui.abletonLive.appActivateMainWindow();

    sf.keyboard.press({
    keys: "l",
    });

    sf.mouse.click({
    isRightClick: true,
    });

    sf.ui.abletonLive.menuClick({
    menuPath: ["Edit","Rename"],
    });

    • 0 replies