Hello there guys,
I've got a strange problem...
I'm using NetBeans IDE v5.5 and when I run my application inside netbeans by clicking 'Run main project' it runs and everything works correctly.
Now when I go to the dist folder and double click it... (the Jar file is assicated with a JRE) it half loads but none of the images are loaded. I can't understand why it works in the IDE but not outside?
I've refrerenced the images using the following code:
private static final String BRAODCASTING = "images/satelite.gif";
private final URL IMAGE_BROADCAST_URL ;
...
...
img = new ImageIcon (IMAGE_NOTBROADCAST_URL.getPath ());
Any ideas?