Hi again,I would like to get rid of certain received OSC messages containing a particular string, say I want to filter out all /synth1 messages coming from lots of different sources a/synth1/parm2 0.45b/synth1/parm2 0.45c/synth1/parm2 0.45d/synth1/parm2 0.45(...) I could of course OSCroute all */synth1 manually (I can't specify a string beginning with * in OSCroute, everything goes thru) but, would it be a more elegant way to do so? Thanks in advance!Josep m
Hello Jeppi,
i assume your messages start all with a "/", and not how you wrote?
a/synth1/parm2 0.45 b/synth1/parm2 0.45 I can't specify a string beginning with * in OSCroute, everything goes thru
You can do that in [routeOSC]:
[/a/synth1/parm2 0.25( | | [routeOSC /*] | [routeOSC /synth1]
cheers, marian