Page 1 of 1
Show/hide controls from OSC
Posted: 05 Oct 2013 14:03
by leehu
Hi, is this possilbe - I'm trying to send an OSC message of the form /target @show 1 or /targer @show 0 but doesn't seem to have any effect.
Is this the correct syntax? thx Lee
Re: Show/hide controls from OSC
Posted: 05 Oct 2013 19:00
by xmonsta
Put a script in your container called "showhide"
Put this in the script: (execution on OSC)
show(findobject(OSC_ARGS[0]), OSC_ARGS[1]);
Then OSC is : /container/showhide 0 (or 1)
I think.
Re: Show/hide controls from OSC
Posted: 05 Oct 2013 19:33
by leehu
Hi, thx - yeah, figured I could do something like that, but wondered if it was actually exposed.
thx