Hi,
I am trying to send a message using oscP5 from one sketch to the other. When I use latin characters the text appears fine on the other machine. When I use greek characters it arrives all mangled up.
I send the msg as follows:
OscMessage myMessage = new OscMessage("/test");
myMessage.add("αβγδ");
oscP5.send(myMessage, myRemoteLocation);
I know it is not a problem with processing displaying greek fonts because if I do a simple text("αβγ", 20,20) it displays the text just fine. It's when I parse the message as below:
void oscEvent(OscMessage theOscMessage)
{
searchTerm=theOscMessage.get(0).stringValue();
}
and I run:
text(searchTerm, 20,20);
that it comes out scrambled. As if the transferring of the message via oscP5 is messing it up. I noticed someone else having trouble with chinese as well.