davey
06-18-2005, 11:48 PM
what would be the best way of making a background image for this ?
(any other dumb errors you see please tell me as i am just learning java thanks)
package KickBoxer;
import java.awt.*;
import javax.swing.*;
public class KBLoader {
public KBLoader() {
JFrame splash = new JFrame("Kick Boxer Splash");
Container splashpane = splash.getContentPane();
splash.setDefaultCloseOperation(2);
splashpane.setBackground(Color.BLACK);
splash.pack();
splash.setSize(800,600);
splash.show();
}
}
(any other dumb errors you see please tell me as i am just learning java thanks)
package KickBoxer;
import java.awt.*;
import javax.swing.*;
public class KBLoader {
public KBLoader() {
JFrame splash = new JFrame("Kick Boxer Splash");
Container splashpane = splash.getContentPane();
splash.setDefaultCloseOperation(2);
splashpane.setBackground(Color.BLACK);
splash.pack();
splash.setSize(800,600);
splash.show();
}
}