to handle with $ and [s] or [r] or [forward]
hello,
can anyone help me to get out of troubleshooting with $ and s, r, or forward ?
I must transform the message s M1 s M2 s M3 etc. into something that matches with [send] or [forward]. I mean dynamic form, something like the message (send M$1) in which I give the message (1) and the whole thing gives argument [send M1].
p
I don't really understand your question, maybe providing a patch would help. I the meantime, maybe the following will be enough:
[send] name can only be set once in the object box. You can make an abstraction with a [send #1] in it, call that abstraction myabstraction.maxpat. Then you can use that abstraction as [myabstraction M1] for example, and inside of it the #1 will be replaced by M1.
If you want to change the destination multiple times, use [forward] with send messages to change the destination.
If your actual issue is just to put a number after a letter, see [sprintf] or [combine].
how simpe it gets depends on a message type that needs to be sent.
here is example using M ID and a number

Thank you very much.
P