Problems with compiling the JME for gui

Guys, I have tried to build the new JME and this is what I get:



C:jme>ant dist
Buildfile: build.xml

init:

compile:
[javac] Compiling 251 source files to C:jmebuild
[javac] C:jmesrccomjmesoundLWJGLEffectPlayer.java:190: cannot resolve symbol
[javac] symbol : method isCreated ()
[javac] location: class org.lwjgl.openal.eax.EAX
[javac] if (EAX.isCreated()) {
[javac] ^
[javac] C:jmesrccomjmesoundLWJGLEffectPlayer.java:199: cannot resolve symbol
[javac] symbol : method isCreated ()
[javac] location: class org.lwjgl.openal.eax.EAX
[javac] if (EAX.isCreated()) {
[javac] ^
[javac] C:jmesrccomjmesoundfilterLWJGLListenerFilter.java:78: cannot resolve symbol
[javac] symbol : method setAutoCommit (boolean)
[javac] location: class org.lwjgl.openal.eax.EAXListenerProperties
[javac] listenerProperties.setAutoCommit(false);
[javac] ^
[javac] C:jmesrccomjmesoundfilterLWJGLListenerFilter.java:87: cannot resolve symbol
[javac] symbol : method setAutoCommit (boolean)
[javac] location: class org.lwjgl.openal.eax.EAXListenerProperties
[javac] listenerProperties.setAutoCommit(true);
[javac] ^
[javac] C:jmesrccomjmesoundfilterLWJGLListenerFilter.java:89: cannot resolve symbol
[javac] symbol : method setAutoCommit (boolean)
[javac] location: class org.lwjgl.openal.eax.EAXListenerProperties
[javac] listenerProperties.setAutoCommit(false);
[javac] ^
[javac] 5 errors

BUILD FAILED
file:C:/jme/build.xml:23: Compile failed; see the compiler error output for details.

Total time: 8 seconds


Does anybody know what I am missing :?
tomcat

It’s a sound issue. For EAX to work it requires an unofficial build from LWJGL. Update the data directory. There is a zip with the new lwjgl build. Place those into the lib file and it should build.

Thanx, I did that and it compiled. Is there any examples to run?

:slight_smile:

com.jme.test.widget has two:



TestWidgetApp1 and TestWidgetApp2

See it now, :// will look more carefully next time.

Guys, thanks for the help. It looks good and I like more of it. Is there a way to load up an image into a panel or smothing like it. Better still is there a panel or window that I can use to put components in it. :?

tomcat