|
Author |
Topic: java mode still hangs (Read 587 times) |
|
trip
|
java mode still hangs
« on: Nov 1st, 2003, 12:33am » |
|
java mode is still hanging my sketch window: public class MyDemo extends BApplet { void setup() { size(200, 200); background(255); rectMode(CENTER_DIAMETER); noStroke(); fill(255, 204, 0); println("setup"); } void loop() { println("loop"); background(255); rect(width-mouseX, height-mouseY, 50, 50); rect(mouseX, mouseY, 50, 50); } } the text comes out ok in the status window, but nothing happens when I move the mouse over the sketch window... in fact, the window is blank. im using p67, winxp, and my classpath is set correctly (i can use java classes, i.e. p5 finds the classes-interfaces-etc, but they wont run because the sketch is hangs). and fyi, i downloaded 67 again yesterday, with the same results. c
|
|
|
|
|