Re: [PD] recursive controls problem

2014-05-10 Thread plutek infinity
...which makes me wonder: besides all the various tutorials, is there a comprehensive online course about pd that one can work through? cheers! .pltk. On 2014-05-10 11:58, plutek infinity wrote: thanks, max! right, so it looks like this needs to be the summer of pd tutorials! :) cheers! .

Re: [PD] recursive controls problem

2014-05-10 Thread plutek infinity
thanks, max! right, so it looks like this needs to be the summer of pd tutorials! :) cheers! .pltk. On 2014-05-10 11:40, Max wrote: On 2014? 05? 10? 23:56, plutek infinity wrote: since my slider is in a gui panel for the patch, with all the other code buried in subpatches, is there a way t

Re: [PD] recursive controls problem

2014-05-10 Thread Max
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2014? 05? 10? 23:56, plutek infinity wrote: > since my slider is in a gui panel for the patch, with all the other > code buried in subpatches, is there a way to get the slider's "send > to float" out of view (other than just sticking it under the >

Re: [PD] recursive controls problem

2014-05-10 Thread plutek infinity
thanks to all for your responses... very helpful! i've implemented a solution based on lorenzo's suggestion, and it works just fine! one further question: since my slider is in a gui panel for the patch, with all the other code buried in subpatches, is there a way to get the slider's "send to

Re: [PD] recursive controls problem

2014-05-09 Thread Lorenzo Sutton
On 09/05/2014 07:24, plutek infinity wrote: [...] i'm trying to control one numerical value in a few ways: 1. have a bang to set an initial value 2. have a slider for mouse control 3. use keyboard keys to increment and decrement [...] the problem is, of course, that if i connect the expr resu

Re: [PD] recursive controls problem

2014-05-09 Thread i go bananas
you can also use [change] in the chain to make sure messages are not resent when they are the same On Fri, May 9, 2014 at 6:12 PM, Lorenzo Sutton wrote: > Hi, > > > On 09/05/2014 07:24, plutek infinity wrote: > >> greetings! >> >> i'm sure this is a simple problem, but i can't seem to come up wi

Re: [PD] recursive controls problem

2014-05-09 Thread Lorenzo Sutton
Hi, On 09/05/2014 07:24, plutek infinity wrote: greetings! i'm sure this is a simple problem, but i can't seem to come up with the solution... i'm trying to control one numerical value in a few ways: 1. have a bang to set an initial value 2. have a slider for mouse control 3. use keyboard key

Re: [PD] recursive controls problem

2014-05-09 Thread Frank Barknecht
Hi, you could use a "set $1"-message to only set the slider's display value without letting it propagate the new value to its outlet. Ciao -- Frank On Fri, May 09, 2014 at 01:24:34AM -0400, plutek infinity wrote: > greetings! > > i'm sure this is a simple problem, but i can't seem to come up

Re: [PD] recursive controls problem

2014-05-08 Thread Jonathan Wilkes
I took a stab at it. The main item here is the [set $1( message.  That allows you to update the display/state of the slider without outputting a value. The [trigger a a] isn't needed for the patch to run correctly, but it makes it easier to see the connection that feeds back up the chain. -Jon

[PD] recursive controls problem

2014-05-08 Thread plutek infinity
greetings! i'm sure this is a simple problem, but i can't seem to come up with the solution... i'm trying to control one numerical value in a few ways: 1. have a bang to set an initial value 2. have a slider for mouse control 3. use keyboard keys to increment and decrement the attached patch