Oscout Bug?
Posted: 07 Apr 2014 20:56
So I've been trying to work at this for awhile now. My level of programming is minimal but I have a basic understanding. I'm trying to get a single Multislider called LFOModRate to send OSC out if a switch is engaged. So if switch 2 is on then it send the oscout to the address below. If switch 3/4/5 are on then the LFOModRate fader object sends out osc messages corresponding to /Cosmos_/LFO3_(or 4, etc...)/modrate. I'm not able to get the oscout to send any messages even without the if statement. Is this also part of the 5.0 osc bug that is going to be updated or am I just doing something wrong.
Script for LFOModRate below
On expression, x
Script for LFOModRate below
On expression, x
Code: Select all
getexpression(LFO2onoff, 'x');
if(firstof(LFO2onoff) == 1) {
oscout(9001,'/Cosmos_/LFO2_/modrate',x);
}