I have an applet that loads images from a folder:
And now I want to put this applet online. The java program successfully loaded I believe, but I get an exception in the status bar saying this:Code:private Image img;
img = Toolkit.getDefaultToolkit().getImage("images/"+this.getClass().getName()+color+".png");
http://grab.by/3QfY
I tried putting the folder "images" in the same directory as the .class's, but it doesn't work. Any ideas?
Thanks in advanced.
