[quote]k, i had a problem earlier, but I now have moved onto this.
I am just trying to run a quick program that will see if I have anything connected, and i get this output:
Scanning jar: HIDWrapper.jar
Examining file : META-INF/
Examining file : META-INF/MANIFEST.MF
Examining file : net/
Examining file : net/java/
Examining file : net/java/games/
Examining file : net/java/games/input/
Examining file : net/java/games/input/InputController.class
Examining file : net/java/games/input/InputControllerElement.class
Examining file : net/java/games/input/OSXEnvironmentPlugin.class
Found candidate class: net/java/games/input/OSXEnvironmentPlugin.class
Exception in thread “main” java.lang.NoClassDefFoundError: net/java/games/input/ControllerEnvironment
[/quote]
Thats an odd error. ControllerEnvironment is an abstract class and part of the jinput core code. Whats your classpath look like? Where did you install the jinput jar?
My best geuss off the top of my head is that its not on your classpath but that you somehow launched this code off from a custom class loader and that, when the plug-ins class loader ties to find this core calss by differing to its parent, the cl;asspath classloader, the classpath classloader cant find it.