I read "LEARNING PROCESSING" book and I found the way to play Sound and the code was...
import processing.video.*;
Movie movie;
void setup() { size(200, 200);
movie = new Movie(this, "sample.mp3");
}
void draw() { background(0); noLoop(); }
void mousePressed(){ movie.stop(); movie.play(); }
but...
The class "Movie" does not exist
What's wrong?