Re: [PD] [GEM-dev] [GEM]

2009-04-15 Thread IOhannes m zmoelnig
Loic Kessous wrote: Hi, I just want to report this but I don't know if it's related to gem-dev or usual pd-gem, so sorry for cross-posting. I am using pix_movement and pix_movement2 on os X and MSW vista and apparently with pix_movement the display is not correct on MSW, It doesn't show

[PD] Wiimote on pure dyne

2009-04-15 Thread Nicanor Garcia
Hello, I just installed pure dyne linux portable distro on my USB and I'm trying to configure it to my needs. I need to use the Wiimote object which is an external, but I haven't been able to do so. When I try to change the paths or the startup settings on Pure Data and I click Save all settings

Re: [PD] Wiimote on pure dyne

2009-04-15 Thread IOhannes m zmoelnig
Nicanor Garcia wrote: Hello, I just installed pure dyne linux portable distro on my USB and I'm trying to configure it to my needs. I need to use the Wiimote object which is an external, but I haven't been able to do so. When I try to change the paths or the startup settings on Pure Data and I

Re: [PD] Wiimote on pure dyne

2009-04-15 Thread Martin Schied
Hi! btw, has anybody managed to use the wiimote (or libcwiid to be precise) with a kernel 2.6.26? fgmasdr IOhannes yes. here it's working on ubuntu intrepid 2.6.27-11-generic. But I know of general bluetooh problems on intrepid's recent kernels, maybe 2.6.26 - but I don't remember

[PD] audio delay blues

2009-04-15 Thread joel silvestre
Hi all, this small patch works perfectly when pd is running with his gui but does not work at all, no more delay and a distorded beep when pd is running without gui in vanilla pd 0.41-4, 0.42-2 and pd-extended 0.41-4 but works perfectly with and without gui in Pd-extended 0.40-3. Do I do

Re: [PD] audio delay blues

2009-04-15 Thread Derek Holzer
I've had this problem with delays and tabreads both in different versions of Pd. One thing that has been suggested in the past is to add a [netreceive] object in your patch (to simulate the timing of the audio thread with the GUI, I suppose). best! Derek joel silvestre wrote: Hi all, this

[PD] pdp_freeframe freeze - perhaps a bug?

2009-04-15 Thread Ed Kelly
Greetings, This is the help file for pdp_freeframe wrapped, so that the parameter names are transferred to the sliders. It used to work, then I upgraded to Ubuntu Intrepid and pd-extended 0.40-3 to solve some other issues (stability, pd crashing while using pdp on a projector). Now it freezes

[PD] My first external: [fsm] finite state machine for pd

2009-04-15 Thread lsw
Dear list, i have been absent from pd-list for a few years, but i'd like to change that. :) During the last days i wrote my first external: fsm - finite state machine for pd I wrote this with algorithmic sequencing and sequence recognition in mind. You can find builds for win32, osx and

Re: [PD] Wiimote on pure dyne

2009-04-15 Thread a. tonal
_ http://redirect.gimas.net/?n=M0904xIE8_MSN4_WW Internet Explorer 8 jetzt für MSN - kostenlos! ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] My first external: [fsm] finite state machine for pd

2009-04-15 Thread Matthew Logan
Help file keeps crashing Pd on Win machine when I try to open it. Anyone else? On Wed, Apr 15, 2009 at 2:59 PM, lsw l...@floppy35.de wrote: Dear list, i have been absent from pd-list for a few years, but i'd like to change that. :) During the last days i wrote my first external: fsm -

Re: [PD] My first external: [fsm] finite state machine for pd

2009-04-15 Thread lsw
Hi Matthew, thanks for testing. I started pd by doubleclicking the help-file on my Mac without experiencing any crashes. Does the external crash as well, if you instantiate it manually, or is it just the help-file? I compiled the DLL with DevCPP (according to

Re: [PD] My first external: [fsm] finite state machine for pd

2009-04-15 Thread Martin Peach
I think I found it. The function fsm_getbytes should look like this: void * fsm_getbytes(int s) { return getbytes(s); } instead of void * fsm_getbytes(int s) { return getbytes(sizeof(s)); } At least now the help patch doesn't crash Pd on WinXP. Martin lsw wrote: Hi Matthew,