Select CHOP by channel #

Can the Select CHOP also have the option to select by channel number please, the way the Select DAT has?

In the meantime, its relatively cheap to Select the entire set of channels from a single CHOP,
but then you could follow it with a Delete CHOP, which has this option.

Cheers

It is possible to use a Python expression for this.

Assuming that Select CHOP have one input, put this expression in the channel name parameter:

me.inputs[0][int(op(‘chop_with_index_value’)[0])).name

In other words, it return the name of the channel you choose to pick with the index value of it.

Note that the variable in the second brackets must be an int. You can figure out different possible solutions for the variable you need to write in.

Thanks, but that’s hideous. I’m sure it works, but it’d be faster, simpler and more consistent to have it in the chop.

1 Like