andreas schlegel

Results 36 comments of andreas schlegel

unfortunately this is currently not possible. Will look into it.

ScrollableList is of type Controller.

you can iterate the mouseoverlist and extract the name from there. ``` Processing for (ControllerInterface c : cp5.getMouseOverList()) { println(c.getName()); // get the Name of the Controller if(c instanceof Button)...

Hi, I am currently not able to follow up on this immediately but will look into it. The library started all the way back in 2005, so it is fairly...

Will [Controller.bringToFront()](https://github.com/sojamo/controlp5/blob/master/src/controlP5/Controller.java#L759) work for you here? For example ```Processing import controlP5.*; import java.util.*; ControlP5 cp5; void setup() { size(800, 400); List l = Arrays.asList("a", "b", "c", "d", "e", "f", "g",...

Hi, do you have a (runnable) example code to demonstrate the issue and the desired behaviour?

Thanks for the example. Fixed in [dev-2.2.7 branch](https://github.com/sojamo/controlp5/commit/d3dad67633ee5982877a9d1fc6f917408fbf7ca0)

ok, thanks for reporting. I will have a look. Without digging deeper, I suspect the pixelDensity might not be applied to the PGraphics element which is used to render text...

Hi, the example works fine when I run it in standard java mode on osx with processing 3.0.2 and ControlP5 2.2.5. In Android mode (installed via Contribution Manager) I do...

can you give an example, a working sketch that highlights the problems you encounter?