Hi everyone,
I know that [send] must have a name matching with the [receive], and I figured out that it can't be changed dynamically by using something like .
I have an abstraction with [r $1], and I change its variable by typing an argument when creating it. My problem is, I have to use almost a hundred of this abstraction in my patch, where each of them has a different name, and which are supposed to receive data from a "single" location sending a long list of numbers and symbols to each of the abstractions in a particular order. I believe there must be an easier way other then using hundreds of [send]s, and activate them one by one in an order, but I couldn't figure out what it might be.
I've tried another solution with a text box like:
[;
$1, $2, $3, etc;(
where the first variable is dynamically changed to match [r $1], but it says "error: $1: symbol needed as message destination", although the first component of the list that is sent to it is already a symbol, the name of the abstraction that I want my data to be sent.
Any idea?