Page 1 of 1

OSC command for 'select_loop_1' etc?

Posted: Fri Aug 24, 2012 5:13 pm
by justing
Hi Jesse
I'm setting up Pure Data patch to send OSC commands to control SooperLooper. Is there a way I can send OSC messages to 'select_loop_1' and 'select_loop_2' as I can with key bindings 1 and 4?
This would sort out my home-made foot controller!
Thanks a million
Justin

Re: OSC command for 'select_loop_1' etc?

Posted: Wed Sep 05, 2012 11:07 pm
by kasbah

Re: OSC command for 'select_loop_1' etc?

Posted: Mon Sep 10, 2012 10:02 am
by justing
Hi Kasbah
Thanks for the reply, can you clarify how do I set a target range in the OSC message?
Or is that only applicable to midi?
Justin

Re: OSC command for 'select_loop_1' etc?

Posted: Mon Sep 10, 2012 11:10 am
by kasbah
Ah OSC, sorry missed that bit. But in that case I don't understand what the problem is. OSC message is as follows:

/set sf "selected_loop_num" <loop number>

where <loop number> is -1.0 = all, 0.0->N selects loop instances (first loop is 0, etc)

Re: OSC command for 'select_loop_1' etc?

Posted: Mon Sep 10, 2012 1:07 pm
by justing
Hmmm can't seem to make an OSC message do it. Tried the message: /sl/set sf selected_loop_num 0.0 but nothing happens.
Also tried /sl/set selected_loop_num 1.0
Still nothing.
I wonder is there a glitch in the OSC engine regarding this?
Thanks a million for your help. Would love to get this working.

Re: OSC command for 'select_loop_1' etc?

Posted: Mon Sep 10, 2012 1:12 pm
by justing
Ok figured it out! Saw this post from Jesse: viewtopic.php?f=17&t=1290
The message needs a -2 in it, so becomes /sl/-2/set selected_loop_num 0 (or 1, or 2 etc)
Great! Thanks for your help.