Receive OSC with parameter

Hello,

I need to send an OSC message with an argument to Millumin ti trigger columns but i can't find a way to extract and use the argument.

Basically instead of having /clip1 /clip2 /clip3 to trigger columns 1 to 3 i need to use one address and an int argument as the column number like /clip 1, /clip 2...

So this is one argument so in Millumin i set the osc receiver to listen to address /clip and parameter index 0... but how to tell Millumin to trigger the column number according to the parameter received ?

Thanks

Comments

  • Hello @Martial,

    Next update (5.14.b) will have a new kind of interaction to launch a column from a value. Do you want an intermediate version ?

    Another way would be to use a small script (and use an "independent-layer" or a "startup interaction" to run the script during the whole project) :

    onOSCEvent = function(event)
    {
      Millumin.launchColumn(event.values[0])
    }
    

    Best. Philippe

  • Hey @Philippe !

    I'm all up for testing the intermediate version !

    I'll keep the script solution as a backup (and improve my script skills...)

    Thanks !

  • Hi Philippe @Millumin

    got it to work using the provided script using an independant layer. Can you elaborate on the "startup interaction" solution though ? I guess this is a way to make the script active at launch and during the whole project but i can't find the way to achieve this.

    thanks !

  • Hello @Martial,

    Create a "scheduler" interaction to do so.

    I sent you an intermediate version with the new action to launch a column with the value in parameter.

    Best. Philippe

Sign In or Register to comment.