Why am I getting "The function setControlFont(ControlFont) doesn't exist" ?

ArtArt
edited April 2016 in Library Questions

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

  • Answer ✓

    Have you tried

    cp5.setFont(new ControlFont(createFont("Arial",11),11));

  • Yes. It worked. Thank you sojamo:-))

Sign In or Register to comment.