Re: [PD] list item picker widget

2021-02-11 Thread Alexandre Torres Porres
Em qui., 11 de fev. de 2021 às 21:04, Alexandre Torres Porres < por...@gmail.com> escreveu: > Maybe ceammc has one as it has an unbeatable/extraordinary GUI pack > yeah, ui.menu :) > ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and

Re: [PD] list item picker widget

2021-02-11 Thread Alexandre Torres Porres
Em qui., 11 de fev. de 2021 às 17:47, Roman Haefeli escreveu: > On Thu, 2021-02-11 at 15:05 -0300, Alexandre Torres Porres wrote: > > If you want a vanilla dropdown, Henri made one here > > https://github.com/HenriAugusto/guilla > > Cool. That's also a nice one. Thanks for mentioning. It doesn't

Re: [PD] list item picker widget

2021-02-11 Thread Roman Haefeli
On Thu, 2021-02-11 at 15:05 -0300, Alexandre Torres Porres wrote: > If you want a vanilla dropdown, Henri made one here > https://github.com/HenriAugusto/guilla Cool. That's also a nice one. Thanks for mentioning. It doesn't even use data structures, just dynamically resized GOP. BTW, the

Re: [PD] list item picker widget

2021-02-11 Thread Roman Haefeli
On Thu, 2021-02-11 at 19:01 +0100, João Pais wrote: > you mean something like [jmmmp/jp.menu]? Exactly. Thanks for the pointer. That's definitely what I was looking for. Picking something can be done really quick, which is nice. One small caveat: I personally find it confusing, when the

Re: [PD] list item picker widget

2021-02-11 Thread Roman Haefeli
On Thu, 2021-02-11 at 16:51 +, Jonathan Wilkes wrote: > It's possible to build one with data structures. There may be one > from me or others on the pd forum. But it's really a pain to build. I'm not even so worried about the pain of building, but about how you can make something that feels

Re: [PD] list item picker widget

2021-02-11 Thread João Pais
you mean something like [jmmmp/jp.menu]? Or to split a list horizontally through a gui? It's possible to build one with data structures. There may be one from me or others on the pd forum. But it's really a pain to build. In Purr Data I just made a core object "dropdown" built on the same

Re: [PD] list item picker widget

2021-02-11 Thread Alexandre Torres Porres
If you want a vanilla dropdown, Henri made one here https://github.com/HenriAugusto/guilla Em qui., 11 de fev. de 2021 às 14:05, Jonathan Wilkes via Pd-list < pd-list@lists.iem.at> escreveu: > It's possible to build one with data structures. There may be one from me > or others on the pd forum.

Re: [PD] list item picker widget

2021-02-11 Thread Jonathan Wilkes via Pd-list
It's possible to build one with data structures. There may be one from me or others on the pd forum. But it's really a pain to build. In Purr Data I just made a core object "dropdown" built on the same simple display that an atom box has. Best,Jonathan On Thursday, February 11, 2021,

[PD] list item picker widget

2021-02-11 Thread Roman Haefeli
Hi I'm curious what types of list item pickers widgets exist in Pd realm. I imagine a widget that lets you select an item from a arbitrary length list that only displays the picked item and thus uses little screen estate when not in active use. I don't know any but the kludgy ones I made myself.