Re: [PD] Named arguments for abstractions

2014-10-24 Thread katja
Hi, Trying to follow this discussion, I opened Chris's [named-arguments-help.pd] and got these error messages from Pd-Extended 0.44: list fromsymbol: unknown function list fromsymbol ... couldn't create list tosymbol: unknown function list tosymbol ... couldn't create Can you use those

Re: [PD] Named arguments for abstractions

2014-10-24 Thread Chris McCormick
Hi Katja, On 24/10/14 16:15, katja wrote: list fromsymbol: unknown function list tosymbol: unknown function Can you use those arguments to [list]? How? Only since Pd 0.46. Cheers, Chris. -- http://mccormick.cx/ ___ Pd-list@lists.iem.at

Re: [PD] Named arguments for abstractions

2014-10-24 Thread Roman Haefeli
On Thu, 2014-10-23 at 21:47 -0700, Jonathan Wilkes via Pd-list wrote: I think we're talking about the same thing. In matju's scheme, the abstraction author can make it possible for a user to type something like this: [myabstraction, something 1 2 3, something_else blah] After the

[PD] communicating with c++ app using OSC

2014-10-24 Thread Paul Keyes
Hi, I'm sending a list from pd to a c++/liblo app like so: [mylist] | [list prepend /osc_addr] | [list trim] | [packOSC] ... How can I read this list into an array or vector in the c++ app? There seems to be lots of libraries, I've been testing liblo, but nothing straightforward for receiving

Re: [PD] communicating with c++ app using OSC

2014-10-24 Thread Miller Puckette
Hi Paul - No need to use OSC for this - you can just use netsend. THere's sample code for receiving from netsend in pd/src/u_pdreceive.c. cheers Miller On Fri, Oct 24, 2014 at 03:21:22PM -0300, Paul Keyes wrote: Hi, I'm sending a list from pd to a c++/liblo app like so: [mylist] |

Re: [PD] communicating with c++ app using OSC

2014-10-24 Thread Alexandre Quessy
Check in Toonloop's or MapMap's source code. toonloop.com mapmap.info Le 2014-10-24 19:19, Miller Puckette m...@ucsd.edu a écrit : Hi Paul - No need to use OSC for this - you can just use netsend. THere's sample code for receiving from netsend in pd/src/u_pdreceive.c. cheers Miller On