Here's my situation: -I have an array of images loaded from gifs into an applet with a mediaTracker. -The applet creates an instance of a gui I made with a frame,etc. -Using "ImagePanel extends Panel" which I created, I display the images in the gui Problem: Some of the images are not appearing while others are. Reasons? Solutions?
Here's some code: class ImagePanel extends Panel{ Image image; public ImagePanel(){ super();} public ImagePanel(Image img){ this(); image = img;} public void paint(Graphics g){ g.drawImage(image,0,0,this);} }