hello,
I have been using Processing since tonight!
I get the same result with the serial.
The original code is
Code: serial = new Serial(this, Serial.list()[12], 9600, 'N', 8, 1.0);
that takes 32 seconds
My USB Xbee explorer board is on COM30.
so I wrote
Code:serial = new Serial(this, "COM30", 9600, 'N', 8, 1.0);
or
Code:serial = new Serial(this,"COM30", 9600);
and that takes 16 seconds ( now it take 24 sec, I got a lot of stuff running on my computer

)
I will read about
mdfogarty comment on RealTerm. I hope to find a solution for this, I am interfacing with the arduino.
I was planning on making a .exe file but I get a blank screen for 24 seconds and more before I see all my interface. Do you think there is a way to write "loading" so people know that my program is doing something instead of thinking I am a bad programmer

Even if I draw a line before calling serial, it is a blank window.
Thanks!