Hi!
Here's the situation:
I've got 22 toggles that are each running their own array. But because they're all headed to the same input, I need a way to switch between them easily. The trick is, the patch really only works if I send just one array at a time...
My first thought was to use vradio and some conditional logic, but I've come across this issue:
If I click value 2 for example - even if it turns on the toggle assigned to value 2 AND doesn't turn on the toggles assigned to the other 21 values, it still WILL send bangs through to all the rest of the arrays, causing many of them to play out of turn.
Is there a clean fix, maybe an object I don't know about?
What are my options?
Thanks!
Nico
-
multi-toggle ?
-
@nico Conditional logic will always output true / false for every input, so bangs every time.
[route x] where x is the value should stop the bangs.
You will lose the value but if it is just switching the toggle that might be ok.
If not then post a little demo patch so we can better see the problem.
David. -
Right on! Didn't know about [route]. works perfectly. I appreciate it David!
-
@nico or [sel] [select] instead of [==]