Describe your issue here:
in a script I want to indicate to wait for the song to jump to the indicated section and then enable loop…
I have it scripted like:
await waitForOscChange sendOsc("/setlist/jumpToSection", foundRaw);
sendOsc("/loop/enable");
// other alternatives i have tried...
//alternative: sendOsc("/setlist/jumpToSection", foundIndex);
//sendOsc("/setlist/jumpToSection", foundIndex);
//sendOsc("//awaitJump","/loop/enable");
right now it just set the section to jump but inmediatly enables the loop… if i remove the looping promp then the song set the section to jump and then jump but nothing else…(obviously)