|
Are you sure this isn't just a normal classpath problem? What happens if you do java -classpath [your-classpath] net.java.games.jogl.GLEventListener ? If you get "no such method: main()", then your classpath is OK, If you get "class not found", then you have a typical classpath problem: try extending the classpath command-line argument (or environment variable) to include the jogl jar. --Chris (invalidname) |