How do I change Select panel to the next panel using a switch Chop?
Attached a exeplo what I’m trying to do.
NewProject.1.toe (4.34 KB)
How do I change Select panel to the next panel using a switch Chop?
Attached a exeplo what I’m trying to do.
NewProject.1.toe (4.34 KB)
I believe the solution is something in python, but I could only export one channel at a time.
I am using the following command: op (“null1”) [“button1”]
how should i do so that the select panel accepted the two switch results chop?
NewProject.2.toe (4.36 KB)
CHOPs are better suited to numeric values.
In your case looks like you’re trying to use the channel names coming through.
In your example, change your expression to:
op(“null1”)[0].name
ie, take the name of the first channel of null1.
But since youre not using the CHOP numeric values at all (just their channel names), would probably be better to set things up as strings in DATs and grab the cell contents after a switch DAT.
-Rob.
Thank you Rob.
I quite understand what you said.
But I am a layman in scripts.
What would be the command to get the contents of the cell and play in the selection panel?
Thanks for listening …
No problem Adriano.
I’ve attached a toe file showing the exact solution but implemented with Table DATs, and Switch DAT.
The final expression to pull out a cell is:
op(‘null2’)[0,0] #get row 0, column 0 from null2
Ive added a third method in the network in which all the entries are in a single table,
and the row is selected out with a Select DAT.
Cheers,
Rob.
NewProject.3.toe (4.63 KB)