We are about to switch to a new forum software. Until then we have removed the registration on this forum.
is it possible that the dropdownList close when i click outside?
import controlP5.*;
ControlP5 cp5;
DropdownList l;
void setup() {
size(1000, 500);
cp5 = new ControlP5(this);
l = cp5.addDropdownList("myList")
.setPosition(100, 100)
;
String[] fontList = PFont.list();
for (int i=0; i<fontList.length; i++) {
l.addItem(fontList[i], i);
}
}
void draw() {
background(90);
}
Answers
is solved it:
:)