We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello
I'm recently working on a processing project and now i got some trouble because of my language.
i'm trying to get Korean language in a textfield using controlP5.
However i have trouble to get Korean language in the textfield.
Is there any solution?
This is the code below.
import controlP5.*;
ControlP5 cp5;
String textValue = "";
void setup(){
PFont font = createFont("arial",60);
cp5 = new ControlP5(this);
cp5.addTextfield("")
.setPosition(width/4,(height/3)*2)
.setSize(800,80)
.setFont(font)
.setFocus(true)
.setLabelVisible(true)
.setColor(color(255,255,255))
.setColorBackground(color(255,255,255,150));
}
Thank you.
Answers
http://forum.processing.org/two/discussion/10107/how-to-detect-no-glyph-char