Is it possible to type into controlP5 numberBox?
I think it's totally normal behaviour for standard number boxes (focus mouse on, then click on numberbox, then type numbers with keyboard, then press enter to evaluate) but it seems that this feature isn't implemented....
If it's possible to do it with controlP5, can somebody please help me with this?
I wanted to apply stroke color of the text I've loaded from the Font.
And I found out that there was no stroke attribute...
I did a research and found someone posted a question back in 2005!
and the answer was no.
5 years gone...is there any solution for outline text?
I'm sending osc messages from supercollider to p5 using p5osc lib.
it receives messages and show it in the post window.
but, well, I just can't find a way to use those messages to do something in my p5 program.
I've tried to trigger a text display each time p5 receives an osc message.
but it becomes more and more confusing.
it does not do anything or triggers the display time to time, very shortly.
can someone please help me??
thank you very much.
import processing.video.*;
import oscP5.*;
import netP5.*;
PFont fontA;
Capture cam;
OscP5 oscP5;
NetAddress myRemoteLocation;
void setup() {
size(640,480);
cam = new Capture(this, 640, 480);
frameRate(25);
oscP5 = new OscP5(this,12000);
myRemoteLocation = new NetAddress("127.0.0.1",12000);