How can I apply a GIF image to my AWT Button?
AWT: does not work
Icon warnIcon = new ImageIcon("/src/world.gif");
Button button1 = new Button(warnIcon);
Icon warnIcon = new ImageIcon("/src/world.gif");
JButton button1 = new JButton(warnIcon);
AWT is a bit different from Swing.
There’s no constructor
button(image), hence your “not working”.Take a look at Learn how to extend the AWT with your own image buttons to see how to make that image on a AWT button.