hello
i was looking through some .pd files in a text editor and was trying to figure out exactly what everything meant so i could write some scripts to automate making some things. i couldn't find documentation for it; I'm looking primarily to see how the connect statements work. any info appreciated!
steven
It's undocumented, but...
"connect object-number outlet-number object-number inlet-number". The four numbers count from 0 up; objects are bnumbered in the order they're created.
So "connect 1 3 0 0" would be "connect the fourth outlet of the second object to the first inlet of the first object".
cheers Miller
On Wed, Jul 25, 2001 at 12:44:10PM -0400, SYi@wavexpress.com wrote:
hello
i was looking through some .pd files in a text editor and was trying to figure out exactly what everything meant so i could write some scripts to automate making some things. i couldn't find documentation for it; I'm looking primarily to see how the connect statements work. any info appreciated!
steven
Hi all,
Is it at all possible to open and close patches/subpatches simply through sending messages? I would like to be able to write different patches for different pieces and be able to close one and open another without having to put my guitar down, click through dialog boxes and stuff.
Thnx.
./MiS
If you've got a patch named "soundfiler.pd", for instance, this patch will open and close it:
#N canvas 448 95 450 300 10; #X msg 100 45 ; pd-soundfiler.pd menuclose; #X msg 120 106 ; pd open soundfiler.pd .;
cheers Miller
On Wed, Jul 25, 2001 at 04:22:34PM -0400, Michal Seta wrote:
Hi all,
Is it at all possible to open and close patches/subpatches simply through sending messages? I would like to be able to write different patches for different pieces and be able to close one and open another without having to put my guitar down, click through dialog boxes and stuff.
Thnx.
./MiS