set marker and rename marker in ableton with one macro
By toon bosschaert @toon_bosschaert
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"],
});