1

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
});
Erik
  • 2,782
  • 3
  • 34
  • 64

1 Answers1

1

This works for me:

max.set({
    path: 'live_set tracks 1 clip_slots 0 clip',
    property: 'looping',
    value: false
});
Mattijs
  • 1,909
  • 3
  • 19
  • 28