Re: [PD] OSX and pd-extended 0.43.1

2011-07-12 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-07-12 00:47, Mathieu Bouchard wrote: On Mon, 11 Jul 2011, Hans-Christoph Steiner wrote: Ok, I think I found it, there were lots of 32-bit .x%x.c patterns in the magicglass/nlet highlighting code, I replaced them with proper .x%lx.c

[PD] Arduino UNO how-to in puredata.info

2011-07-12 Thread Pierre Massat
Hi all, I've created a page in the Documentation folder to help arduino UNO owner fix their board if they need to use it in Linux (assuming that Pd users who need an interface to control Pd also need low-latency, and most probably use a linux machine). It's here :

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread András Murányi
2011/7/12 Hans-Christoph Steiner h...@at.or.at On Jul 11, 2011, at 6:09 PM, András Murányi wrote: On Mon, Jul 11, 2011 at 23:50, Hans-Christoph Steiner h...@at.or.atwrote: On Jul 11, 2011, at 5:35 PM, Jonathan Wilkes wrote: --- On Mon, 7/11/11, Hans-Christoph Steiner h...@at.or.at

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Mathieu Bouchard
On Tue, 12 Jul 2011, András Murányi wrote: As Matju pointed out, abstractions' help file is canvas-help.pd. No, Jonathan is the one who said it. ___ | Mathieu Bouchard tél: +1.514.383.3801 Villeray, Montréal, QC

[PD] compile gem on windows?

2011-07-12 Thread Budi Prakosa
hi list, is there any working guide to compile gem on windows? thanks -- Budi Prakosa house of natural fiber (HONF) yogyakarta new media art laboratory wora wari A80/6 baciro yogyakarta indonesia http://www.natural-fiber.com ___ Pd-list@iem.at

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Hans-Christoph Steiner
On Mon, 11 Jul 2011 19:57 -0700, Jonathan Wilkes jancs...@yahoo.com wrote: --- On Tue, 7/12/11, Hans-Christoph Steiner h...@at.or.at wrote: From: Hans-Christoph Steiner h...@at.or.at Subject: Re: implementing tooltips WAS: [PD] Pd-extended 0.43 updates: lots of new editing features

Re: [PD] OSX and pd-extended 0.43.1

2011-07-12 Thread Hans-Christoph Steiner
On Tue, 12 Jul 2011 09:41 +0200, IOhannes m zmoelnig zmoel...@iem.at wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2011-07-12 00:47, Mathieu Bouchard wrote: On Mon, 11 Jul 2011, Hans-Christoph Steiner wrote: Ok, I think I found it, there were lots of 32-bit .x%x.c patterns

Re: [PD] OSX and pd-extended 0.43.1

2011-07-12 Thread Mathieu Bouchard
On Tue, 12 Jul 2011, Hans-Christoph Steiner wrote: On Tue, 12 Jul 2011 09:41 +0200, IOhannes m zmoelnig zmoel...@iem.at btw, wouldn't %p be the correct way to print a pointer? or are there some compat issues with that (e.g. non-POSIX) All I know is that the rest of the Pd code uses .x%lx. At

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Jonathan Wilkes
--- On Tue, 7/12/11, Hans-Christoph Steiner h...@at.or.at wrote: From: Hans-Christoph Steiner h...@at.or.at Subject: Re: implementing tooltips WAS: [PD] Pd-extended 0.43 updates: lots of new editing features To: Jonathan Wilkes jancs...@yahoo.com Cc: Mathieu Bouchard ma...@artengine.ca,

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Mathieu Bouchard
On Tue, 12 Jul 2011, Jonathan Wilkes wrote: Given a t_object, what's the best way to tell if it's an abstraction, and-- if it is-- how can I query its glist members (gl_name and the canvasenvironment ce_path?) EXTERN int canvas_isabstraction(t_canvas *x); declared in #include g_canvas.h

Re: [PD] route - pack issue

2011-07-12 Thread Mathieu Bouchard
On Fri, 8 Jul 2011, Ivica Ico Bukvic wrote: Many thanks for this contribution! I will add this to pd-l2ork. However, shouldn't also route output bang when having an empty list? Should pd's message system leave this responsibility to each individual class ? If it does, problems like this will

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Hans-Christoph Steiner
On Tue, 12 Jul 2011 10:33 -0700, Jonathan Wilkes jancs...@yahoo.com wrote: --- On Tue, 7/12/11, Hans-Christoph Steiner h...@at.or.at wrote: From: Hans-Christoph Steiner h...@at.or.at Subject: Re: implementing tooltips WAS: [PD] Pd-extended 0.43 updates: lots of new editing features

Re: [PD] route - pack issue

2011-07-12 Thread Mathieu Bouchard
On Thu, 7 Jul 2011, Joe White wrote: This is connected to a [pack f]. When I bang the start message the route object outputs a bang, which in turn should output the stored number in the pack object. However, this does not happen (which is the problem).  If I connect a [t b] after the [route]

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Jonathan Wilkes
--- On Tue, 7/12/11, Mathieu Bouchard ma...@artengine.ca wrote: From: Mathieu Bouchard ma...@artengine.ca Subject: Re: implementing tooltips WAS: [PD] Pd-extended 0.43 updates: lots of new editing features To: Jonathan Wilkes jancs...@yahoo.com Cc: Hans-Christoph Steiner h...@at.or.at,

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Mathieu Bouchard
On Tue, 12 Jul 2011, Jonathan Wilkes wrote: Mathieu Bouchard ma...@artengine.ca wrote: EXTERN int canvas_isabstraction(t_canvas *x); declared in #include g_canvas.h but it takes a t_canvas and I have a t_object. pd_class(x)==canvas_class ? canvas_isabstraction((t_canvas *)x) : 0; thus you

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Jonathan Wilkes
--- On Tue, 7/12/11, Hans-Christoph Steiner h...@at.or.at wrote: From: Hans-Christoph Steiner h...@at.or.at Subject: Re: implementing tooltips WAS: [PD] Pd-extended 0.43 updates: lots of new editing features To: Jonathan Wilkes jancs...@yahoo.com Cc: Mathieu Bouchard ma...@artengine.ca,

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Hans-Christoph Steiner
  Then it wouldn't even check c_helpname.   Additionally, internal objects don't have a c_externdir in 0.43 vanilla, but I guess even the vanilla objects are going to be in their own lib so that won't matter going forward, right? This is the case

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Mathieu Bouchard
On Tue, 12 Jul 2011, Mathieu Bouchard wrote: On Tue, 12 Jul 2011, Jonathan Wilkes wrote: Mathieu Bouchard ma...@artengine.ca wrote: EXTERN int canvas_isabstraction(t_canvas *x); declared in #include g_canvas.h but it takes a t_canvas and I have a t_object. pd_class(x)==canvas_class ?

Re: [PD] Tone-Cluster Patch anyone?

2011-07-12 Thread Jeffrey Concepcion
Hans, Thanks for letting me know about the 'many' lib, I'll check it out. And Martin I'll try out your patch asap. I think I read somewhere about a [polyosc~] object or it could be a figment of my imagination. On Tuesday, July 12, 2011, martin brinkmann m...@martin-brinkmann.de wrote: On

Re: [PD] implementing tooltips WAS: Pd-extended 0.43 updates: lots of new editing features

2011-07-12 Thread Mathieu Bouchard
On Mon, 11 Jul 2011, Jonathan Wilkes wrote: One thing I'm running into is that c_helpname doesn't help with abstractions-- it obviously just returns canvas. I guess I could then compare to the first atom in te_binbuf and if it's not pd then it's the name of the abstraction. But that still

[PD] Join my network on LinkedIn

2011-07-12 Thread Thomas Thiery via LinkedIn
LinkedIn Thomas Thiery requested to add you as a connection on LinkedIn: -- I'd like to add you to my professional network on LinkedIn. Accept invitation from Thomas Thiery

[PD] [PD-announce] Invitation à se connecter sur LinkedIn

2011-07-12 Thread Thomas Thiery
LinkedIn J'aimerais vous inviter à rejoindre mon réseau professionnel en ligne, sur le site LinkedIn. Thomas Thomas Thiery Intégrateur chez Orckestra Conseil Inc. Région de Montréal, Canada Veuillez confirmer que vous connaissez Thomas Thiery