We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I was testing some java code made in Processing and exported to Eclipse:
import processing.core.*;
import ddf.minim.*;
public class processingTest extends PApplet {
AudioPlayer song;
Minim minim;
public void setup() {
size(560, 320);
smooth();
minim = new Minim(this);
song = minim.loadFile("song.wav", 2048);
song.loop();
background(0);
}
public void draw() {
stroke(random(255), random(255), random(255));
fill(random(255), random(255), random(255));
strokeWeight(random(20));
rect(random(width), random(height), random(width/2), random(height/2));
}
public void stop() {
song.close();
minim.stop();
super.stop();
}
static public void main(String[] passedArgs) {
String[] appletArgs = new String[] { "processingTest" };
if (passedArgs != null) {
PApplet.main(concat(appletArgs, passedArgs));
} else {
PApplet.main(appletArgs);
}
}
}
I had this problem when trying to run the exported code in Eclipse:
PApplet [java application] Usage: PApplet For additional options, see the Javadoc for PApplet
Any suggestions?
Answers
ehh fixed it soz :P I bet you guys to it.
So you fixed it - but you asked for help and expected an answer, so why not help others who might experience the same / similar problem by telling us the solution????
Sure. What I did for others that might have had my problem:
Right click the project -> preferences -> Java build path -> Libraries tab. You can add the library there with "add a jar".
The problem was the processing libraries are hidden on the mac (I didn't know that) Find the processing libraries by going Go -> Go to folder and go to your hidden library folder that way
Right click on the imported jar -> use with java build path (I think it was)
Done ^_^