Search code examples
ableton-live

LiveAPI() to control loop


I am trying to disable looping via LiveAPI() calls in Ableton Live 10 and Max 4 Live...

enter image description here

How do I trigger the Loop button pictured here?

I have tried various combinations of the path, via the nodeJS library max4node

https://github.com/alpacaaa/max4node

max.set({
    path: 'live_set tracks 1 clip_slots 0 clip looping',
    property: 'bool',
    value: false
});

Solution

  • This works for me:

    max.set({
        path: 'live_set tracks 1 clip_slots 0 clip',
        property: 'looping',
        value: false
    });