There is a little about this in the 'writing externals' instructions ( http://iem.at/pd/externals-HOWTO/pd-externals-HOWTOse6.html#x8-37000A )
but I'm not finding anything that makes sense to me as to how to code that into an external object. Can anyone point me to examples & fuller explanations?
To clarify: There's nothing there about objects that send or receive messages directly by address name, outside the inlet/outlet patching -- objects like [send] and [receive]. How do you code that property into an external?
On Sat, Jun 6, 2015 at 8:39 AM, Forrest Curo treegestalt@gmail.com wrote:
There is a little about this in the 'writing externals' instructions ( http://iem.at/pd/externals-HOWTO/pd-externals-HOWTOse6.html#x8-37000A )
but I'm not finding anything that makes sense to me as to how to code that into an external object. Can anyone point me to examples & fuller explanations?
hello,
Le 06/06/2015 22:32, Forrest Curo a écrit :
To clarify: There's nothing there about objects that send or receive messages directly by address name, outside the inlet/outlet patching -- objects like [send] and [receive]. How do you code that property into an external?
look to send and receive code. if you understand the base of writing externals, you will understand send and receive code. You can then copy the important part.
cheers c
On Sat, Jun 6, 2015 at 8:39 AM, Forrest Curo <treegestalt@gmail.com mailto:treegestalt@gmail.com> wrote:
There is a little about this in the 'writing externals' instructions ( http://iem.at/pd/externals-HOWTO/pd-externals-HOWTOse6.html#x8-37000A ) but I'm not finding anything that makes sense to me as to how to code that into an external object. Can anyone point me to examples & fuller explanations?
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Thank you, but how to locate the source for a specific built-in object?
On Sat, Jun 6, 2015 at 1:50 PM, Cyrille Henry ch@chnry.net wrote:
hello,
Le 06/06/2015 22:32, Forrest Curo a écrit :
To clarify: There's nothing there about objects that send or receive messages directly by address name, outside the inlet/outlet patching -- objects like [send] and [receive]. How do you code that property into an external?
look to send and receive code.
if you understand the base of writing externals, you will understand send and receive code. You can then copy the important part.
cheers c
On Sat, Jun 6, 2015 at 8:39 AM, Forrest Curo <treegestalt@gmail.com
mailto:treegestalt@gmail.com> wrote:
There is a little about this in the 'writing externals' instructions (
http://iem.at/pd/externals-HOWTO/pd-externals-HOWTOse6.html#x8-37000A )
but I'm not finding anything that makes sense to me as to how to code
that into an external object. Can anyone point me to examples & fuller explanations?
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Sat, Jun 6, 2015 at 6:32 PM, Forrest Curo treegestalt@gmail.com wrote:
Thank you, but how to locate the source for a specific built-in object?
In a terminal go to the pd/src directory and do:
grep -n receive_setup
Martin
Sorry, should be grep -n receive_setup * or grep -n receive_setup *.c if you want the actual source.
Martin
On Sat, Jun 6, 2015 at 6:42 PM, Martin Peach chakekatzil@gmail.com wrote:
On Sat, Jun 6, 2015 at 6:32 PM, Forrest Curo treegestalt@gmail.com wrote:
Thank you, but how to locate the source for a specific built-in object?
In a terminal go to the pd/src directory and do:
grep -n receive_setup
Martin