Re: [PD] Pd preferences dialog progress

2013-05-28 Thread João Pais
Looks very nice. Can you show also the other sections of the dialog? One minimal detail: Use single device instead of devices A bigger detail: does it make sense (for logical and practical reasons) to add a menu to select which channels go into which inputs/outpus, like on max/msp? Hi

Re: [PD] Pd preferences dialog progress

2013-05-28 Thread Jonathan Wilkes
From: João Pais jmmmp...@googlemail.com To: pd-list@iem.at pd-list@iem.at; Jonathan Wilkes jancs...@yahoo.com Sent: Tuesday, May 28, 2013 2:34 AM Subject: Re: [PD] Pd preferences dialog progress Looks very nice. Can you show also the other sections of the

[PD] OSCroute question

2013-05-28 Thread Jeppi Jeppi
Hi again,I would like to get rid of certain received OSC messages containing a particular string, say I want to filter out all /synth1 messages coming from lots of different sources a/synth1/parm2 0.45b/synth1/parm2 0.45c/synth1/parm2 0.45d/synth1/parm2 0.45(...) I could of course OSCroute all

Re: [PD] first exercise with data structures

2013-05-28 Thread Roman Haefeli
Thanks for sharing your mind on the topic. Probably this has already been covered as a limitation and may I haven't really understood it. There is one thing troubling me at the moment. From what I can see, you can easily get data out of your data structure. And for what I am trying, editing data

Re: [PD] Pd preferences dialog progress

2013-05-28 Thread João Pais
Now that I've got the ttk styles down the frontend would take about 5 minutes to make. Actually making it do something would take a lot longer, unless there's a trick to it that one of the audio gurus knows about. I may be wrong but that feature only seems important in making insane

Re: [PD] first exercise with data structures

2013-05-28 Thread João Pais
Probably this has already been covered as a limitation and may I haven't really understood it. There is one thing troubling me at the moment. From what I can see, you can easily get data out of your data structure. And for what I am trying, editing data manually/per GUI is quite easy. But how to

[PD] more about DS

2013-05-28 Thread Roman Haefeli
Hi all Is it possible to have a scalar with a settable position, but which cannot be moved with mouse interaction? I figured I can use arrays to create grids of immutable scalars, but then I don't know how I can detect which specific element/scalar has been clicked on. Thanks, Roman

[PD] RE : Re: first exercise with data structures

2013-05-28 Thread colet.patrice
Datastructure behaves exactly like C language, if all variables and functions are already writen on a paper or with merise or UML, like it would usually be done with a c or c++ program, variable naming and memory allocation becomes easier. In C this is exactly the same method for accessing a

Re: [PD] OSCroute question

2013-05-28 Thread Marian Weger
Hello Jeppi, i assume your messages start all with a /, and not how you wrote? a/synth1/parm2 0.45 b/synth1/parm2 0.45 I can't specify a string beginning with * in OSCroute, everything goes thru You can do that in [routeOSC]: [/a/synth1/parm2 0.25( | | [routeOSC /*] | [routeOSC /synth1]

Re: [PD] more about DS

2013-05-28 Thread João Pais
when you have a point defined by a variable, afaik it's always open to user interaction. but, check the help for drawpolygon, the -x argument. I never tried it. btw, a scalar is only a unit, which can have any graphic, text, symbol usw you define in the template. for these questions it's

Re: [PD] more about DS

2013-05-28 Thread martin brinkmann
On 05/28/2013 12:11 PM, Roman Haefeli wrote: Hi all Is it possible to have a scalar with a settable position, but which cannot be moved with mouse interaction? yes, by adding a -x to the drawpolygon in the template. I figured I can use arrays to create grids of immutable scalars, but then

Re: [PD] more about DS

2013-05-28 Thread Jonathan Wilkes
From: Roman Haefeli reduz...@gmail.com To: pd-list pd-list@iem.at Sent: Tuesday, May 28, 2013 6:11 AM Subject: [PD] more about DS Hi all Is it possible to have a scalar with a settable position, but which cannot be moved with mouse interaction? There's a

Re: [PD] first exercise with data structures

2013-05-28 Thread Roman Haefeli
On Die, 2013-05-28 at 11:25 +0200, João Pais wrote: Probably this has already been covered as a limitation and may I haven't really understood it. There is one thing troubling me at the moment. From what I can see, you can easily get data out of your data structure. And for what I am

Re: [PD] more about DS

2013-05-28 Thread Roman Haefeli
On Die, 2013-05-28 at 13:40 +0200, João Pais wrote: when you have a point defined by a variable, afaik it's always open to user interaction. but, check the help for drawpolygon, the -x argument. I never tried it. Yeah, -x works. As mentioned by Martin, it makes the struct not report clicks

Re: [PD] more about DS

2013-05-28 Thread Miller Puckette
That's what I did too :) M On Tue, May 28, 2013 at 05:22:06PM +0200, Roman Haefeli wrote: On Die, 2013-05-28 at 13:40 +0200, João Pais wrote: when you have a point defined by a variable, afaik it's always open to user interaction. but, check the help for drawpolygon, the -x argument. I

[PD] pd-l2ork multiconnect

2013-05-28 Thread Jonathan Wilkes
Here are some videos of the multiconnect feature set Ivica added to Pd-l2ork: 1. One object's outlets to many objects' inlets: http://puredata.info/Members/jancsika/mc1.webm/view * all objects are selected to get this functionality 2. Many objects' outlets to one object's inlet:

Re: [PD] pd-l2ork multiconnect

2013-05-28 Thread Jonathan Wilkes
Plus there are some other behaviors which I didn't cover here: https://github.com/pd-l2ork/pd/commit/7f3006a63c8b5d437958d1635528033ea951f6ea -Jonathan From: Jonathan Wilkes jancs...@yahoo.com To: pd-list@iem.at pd-list@iem.at Sent: Tuesday, May 28, 2013

[PD] how to kill all [shell]'s child before quitting Pd

2013-05-28 Thread Antoine Villeret
hi, I'm calling a new instance of Pd inside a Pd patch with [shell] but I notice I can't quit the main pd instance if a process is still running inside the [shell] the GUI hangs until the process ends (until I quit Pd) since the child pd is running without gui, 1) is it possible to exit a

Re: [PD] how to kill all [shell]'s child before quitting Pd

2013-05-28 Thread Jack
Le 28/05/2013 20:14, Antoine Villeret a écrit : hi, I'm calling a new instance of Pd inside a Pd patch with [shell] but I notice I can't quit the main pd instance if a process is still running inside the [shell] the GUI hangs until the process ends (until I quit Pd) since the child pd is

Re: [PD] multiblob tracking in Gem while objects keep their IDs

2013-05-28 Thread Max
Am 27.05.2013 um 20:09 schrieb Antoine Villeret antoine.ville...@gmail.com: I have a strange behavior here, some cross appear in the middle of nowhere... but the blobs are keeping their ID well could you try again? I just changed the values of the settings.

Re: [PD] pd-l2ork multiconnect

2013-05-28 Thread Ivica Ico Bukvic
Many thanks for making these, Jonathan. A couple things that may streamline your future tutorial videos is to use Pd-L2Ork version of tidy: 1) create an object (e.g. a number) 2) duplicate n times 3) select all created number objects 4) press ctrl+y to line them up all horizontally (pd-l2ork