Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-17 Thread enrike
I am doing *very* short introductions to PD to art students who are very far from being technical. In that context I noticed that the less connections the better. I basically provide them with ready to use examples and a basic understanding of how to tweak them. I don't blame anyone having

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-16 Thread Jack
Le 16/10/2017 à 17:03, cyrille henry a écrit : > > > Le 16/10/2017 à 13:49, enrike a écrit : > >> I am doing *very* short introductions to PD to art students who are >> very far from being technical. In that context I noticed that the less >> connections the better. I basically provide them

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-16 Thread cyrille henry
Le 16/10/2017 à 13:49, enrike a écrit : I am doing *very* short introductions to PD to art students who are very far from being technical. In that context I noticed that the less connections the better. I basically provide them with ready to use examples and a basic understanding of how to

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-16 Thread IOhannes m zmölnig
On 10/16/2017 01:49 PM, enrike wrote: > > I could have created a simple abstraction encapsulating the structure > but since the number of outputs must be dynamically created on load I am > not sure about how to do it. I also thought it might be already > something out there, I did not want to

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-16 Thread enrike
or., 2017.eko urrren 13a 17:13(e)an, IOhannes m zmölnig igorleak idatzi zuen: On 10/13/2017 11:06 AM, enrike wrote: I know, but I just wanted to know if there something that does the same job but within a single object why? what does it buy you? what does it cost you? sorry I did not

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread oliver
sorry, sent too fast ;-) Matt Davey wrote: > if you use an external to do something simple like this, you are a muppet. i wouldn't do that myself, but i would be proud to do the swedish chef one time ! cheers oliver ___ Pd-list@lists.iem.at

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Christof Ressi
> from the idea that a c-compiled external is better/faster/less > CPU-expensive etc. than a self-made abstraction. generally that's true but in most cases it doesn't matter that much, especially for control objects since they rarely are the bottleneck of your patch. also there's a saying:

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Alexandre Torres Porres
There's also the point and case of just being convenient and being "right there"... meaning that "by an external", the idea is "one external from the pd extended libraries we have", which, let's face it, is how most people got to know Pd. 2017-10-13 13:52 GMT-03:00 oliver : >

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Matt Davey
if you use an external to do something simple like this, you are a muppet. ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Peter P.
* oliver [2017-10-13 18:52]: > IOhannes m zmölnig wrote: > > On 10/13/2017 11:06 AM, enrike wrote: > > > I know, but I just wanted to know if there something that does the same > > > job but within a single object > > > > why? > > what does it buy you? what does it cost you? >

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread oliver
IOhannes m zmölnig wrote: On 10/13/2017 11:06 AM, enrike wrote: I know, but I just wanted to know if there something that does the same job but within a single object why? what does it buy you? what does it cost you? that's an interesting issue in general: i guess the quest for a "single

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread IOhannes m zmölnig
On 10/13/2017 11:06 AM, enrike wrote: > I know, but I just wanted to know if there something that does the same > job but within a single object why? what does it buy you? what does it cost you? gfmasrd IOhannes signature.asc Description: OpenPGP digital signature

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread enrike
ok, yes this is almost what I was looking for or., 2017.eko urrren 13a 17:02(e)an, Alexandre Torres Porres igorleak idatzi zuen: you could use cyclone/cycle for something like that 2017-10-13 6:27 GMT-03:00 Jean-Marie Adrien >:

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread enrike
it is not exactly that. when you continuously bang a gate it just spits the bang in the first outlet. I want it to cycle the outlets or., 2017.eko urrren 13a 11:27(e)an, Jean-Marie Adrien igorleak idatzi zuen: gate 5 ? basically same as above…. Le 13 oct. 2017 à 11:06, enrike

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Alexandre Torres Porres
you could use cyclone/cycle for something like that 2017-10-13 6:27 GMT-03:00 Jean-Marie Adrien : > gate 5 ? > basically same as above…. > > Le 13 oct. 2017 à 11:06, enrike a écrit : > > > > I know, but I just wanted to know if there something that

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread Jean-Marie Adrien
gate 5 ? basically same as above…. > Le 13 oct. 2017 à 11:06, enrike a écrit : > > I know, but I just wanted to know if there something that does the same job > but within a single object > > > or., 2017.eko urrren 13a 10:31(e)an, cyrille henry igorleak idatzi zuen: >> You

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread enrike
I know, but I just wanted to know if there something that does the same job but within a single object or., 2017.eko urrren 13a 10:31(e)an, cyrille henry igorleak idatzi zuen: You have the solution in your mail : you can make a counter with [f] [+ 1] and [% 5] then a [select 0 1 2 3 4] will

Re: [PD] object that routes bangs to different outputs like a counter?

2017-10-13 Thread cyrille henry
You have the solution in your mail : you can make a counter with [f] [+ 1] and [% 5] then a [select 0 1 2 3 4] will do what you want. why do you need something else? cheers c Le 13/10/2017 à 10:17, enrike a écrit : hi sorry for poor email title, is there an object that receives bangs and