Processing Forum
import processing.net.*;
Client myClient;
int dataIn;
void setup() {
size(200, 200);
// Connect to the local machine at port 5204.
// This example will not run if you haven't
// previously started a server on this port
myClient = new Client(this, "127.0.0.1", 5204);
}
void draw() {
if (myClient.available() > 0) {
dataIn = myClient.read();
}
background(dataIn);
}
Could you please help me :)
Kraabumm
I just copied a small part out of my "sourcecode", but it should be enough for you guys to see what isn't working.Cannot make a static reference to the non-static method doit(String) from the type Project.Spellcast