We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Why am I getting "The function setControlFont(ControlFont) doesn't exist" although the controlP5 library has been downloaded and installed? The function call is: cp5.setControlFont(new ControlFont(createFont("Ariel", 11), 11)); what's wrong? The application is written for Processing 2.2.1 Thank you Art
Answers
Have you tried
cp5.setFont(new ControlFont(createFont("Arial",11),11));
Yes. It worked. Thank you sojamo:-))