FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Bugs
   Software Bugs
(Moderator: fry)
   java mode still hangs
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: java mode still hangs  (Read 587 times)
trip

triparepa WWW Email
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
 
fry


WWW
Re: java mode still hangs
« Reply #1 on: Nov 3rd, 2003, 6:13pm »

yeah, this is the same issue as this feller:
http://proce55ing.net/discourse/yabb/board_Proce55ing_software__bugs_action_display_num_1067867520.html
 
so i'll lock this thread and we can use the other one to get it figured out.
 
Pages: 1 

« Previous topic | Next topic »