Hi, i am new to LWJGL and i am hoping that one of you could please tell me how to get LWJGL to compile using JCReator. I have downloaded LWJGL 0.93 alpha from the LWJGL website but where do i put the files now, i dont want to compile my programs using the command line, but instead by using JCReator as I have always used this when dealing with java.
thanks in advance to all who reply
Danny 
In the project wizard->class path->required libraries->new->add->uhm… path I guess.
(I don’t use JCreator)
- Copy the jar-files into /lib/ext.
- Copy the dll-files into /bin.
- Start JCreator
- Configure -> Options -> JDK Profiles -> Select your profile -> Edit… -> Select the classes tab -> Add -> Add Archive… -> Select all the LWJGL-jar-files you copied into /lib/ext -> Open
- OK
- Apply
WiESi
EDIT: Look here: http://www.lwjgl.org/installation.php#jcreator
thanx mate, seems to do the trick
any idea why i would get this error when trying to compile space invaders???
thanx in advance to all who reply
--------------------Configuration: j2sdk1.4.2_04 --------------------
C:\Documents and Settings\Danny\My Documents\Project\Space Invaders\Game.java:92: cannot access ShipEntity
bad class file: C:\Documents and Settings\Danny\My Documents\Project\Space Invaders\ShipEntity.class
class file has wrong version 49.0, should be 48.0
Please remove or make sure it appears in the correct subdirectory of the classpath.
private ShipEntity ship;
^
1 error
Process completed.
Looks like ShipEntity was compiled with Java 1.5. Delete ShipEntity.class, and all other .class files, and recompile.
seems to have done the trick, compiles now, thanks 