Further to this, I've just uploaded a new version of the loader (to the same location) that might fix the problem. I recieved a report about an oddity on linux with loading resources from the classpath,
I would normal use:
MyClass.class.getClassLoader().getResource();
but apparantly on linux only this works:
this.getClass().getClassLoader().getResource();
Odd, but true... anyway, new version up, hopefully it will help.
Kev
I had some very strange behaviour on linux (or just java in general) as well. I couldn't understand it because I had worked with jar files many times before, but all of a sudden it wasn't working.
I found that making the paths absolute (in relation to the jar that is

) by prepending a '/' to the front of all paths worked.
This was when I was adding jar support to TextureLoader.
Will.