First example of tutorial (HelloWorld) not running ...

Hello,

I’m new to jME and and tried do the tut (the pdf), begining with the super simple HelloWorld example…but it does not run. To be more precise once launched, the jme dialog appears, i do the selection, the i get a full (black) screen, then the program dies, on the console i got the following :

E:\MKM\Projets\testJME>java -cp “.;E:/MKM/Projets/testJME/JME/jme.jar;E:/MKM/Projets/testJME/lwjgl/jar/lwjgl.jar;” -Djava.library.path=“E:/MKM/Projets/testJME/lwjgl/native” HelloWorld
2 ao�t 2005 15:25:39 com.jme.app.BaseGame start
INFO: Application started.
2 ao�t 2005 15:25:39 com.jme.system.PropertiesIO
INFO: PropertiesIO created
2 ao�t 2005 15:25:39 com.jme.system.PropertiesIO load
INFO: Read properties
2 ao�t 2005 15:25:45 com.jme.system.lwjgl.LWJGLDisplaySystem
INFO: LWJGL Display System created.
2 ao�t 2005 15:25:45 com.jme.system.PropertiesIO save
INFO: Saved properties
2 ao�t 2005 15:25:45 com.jme.system.lwjgl.LWJGLDisplaySystem
INFO: LWJGL Display System created.
java.lang.NoSuchFieldError: GL_ARB_multitexture
at com.jme.scene.state.lwjgl.LWJGLTextureState.(Unknown Source)
at com.jme.renderer.lwjgl.LWJGLRenderer.(Unknown Source)
at com.jme.system.lwjgl.LWJGLDisplaySystem.createWindow(Unknown Source)
at com.jme.app.SimpleGame.initSystem(Unknown Source)
at com.jme.app.BaseGame.start(Unknown Source)
at HelloWorld.main(HelloWorld.java:17)

2 ao�t 2005 15:25:46 com.jme.app.SimpleGame cleanup
INFO: Cleaning up resources.
2 ao�t 2005 15:25:46 com.jme.input.InputSystem getKeyInput
ATTENTION: KeyInput is null, insure that a call to createInputSystem was made before getting the devices.
2 ao�t 2005 15:25:46 com.jme.input.InputSystem getMouseInput
ATTENTION: MouseInput is null, insure that a call to createInputSystem was made before getting the devices.
2 ao�t 2005 15:25:46 com.jme.app.BaseGame start
INFO: Application ending.

The program is exactly the same as the one of the tut, and when i check the lwjgl doc the GL_ARB_multitexture field exists.
I use the jME 0.8 and the lwjgl 0.97alpha.

Maybe i’ve missed something but I can’t figure what ??? ??? ???

Thank in advance for any tip / answer.
[note : the demos on the jME site run without problem on my machine when launched in the browser]

p.s. the source of the example :
import com.jme.app.SimpleGame;
import com.jme.scene.shape.Box;
import com.jme.math.Vector3f;
/**

  • Started Date: Jul 20, 2004

  • Simple HelloWorld program for jME

  • @author Jack Lindamood
    */
    public class HelloWorld extends SimpleGame
    {
    public static void main(String[] args)
    {
    HelloWorld app = new HelloWorld(); // Create Object
    // Signal to show properties dialog
    app.setDialogBehaviour(SimpleGame.ALWAYS_SHOW_PROPS_DIALOG);
    app.start(); // Start the program
    }
    protected void simpleInitGame()
    {
    // Make a box
    Box b = new Box(“Mybox”,
    new Vector3f(0,0,0),
    new Vector3f(1,1,1));
    rootNode.attachChild(b); // Put it in the scene graph
    }
    }

Ok, it’s me again :

[quote]I use the jME 0.8 and the lwjgl 0.97alpha.
[/quote]
jME 0.8 is only compatible with LWJGL 0.94, so try getting the nightly build as mkm said. Or downgrade lwjgl.