Jamie Bullock wrote:
Hi all,
Has anyone implemented this with externals, or a Pd dynamic patching hack?
s~/r~ are one-to-many settable on the receive side. throw~/catch~ are many-to-one settable on the send side.
What about a sendbus~/receivebus~ many-to-many settable on both sides?
for buses i usually use a [catchsend~] abstraction, that looks like:
[catch~ $1] | [send $1]
this has to be created once for every bus you use. you could use a singleton approach to automatically create it in your [sendbus~]/[receivebus~] abstractions.
mfgasdr IOhannes