Hi,
mein Applet dass ich habe startet prima in eclipse. nur wenn ich es mit
in eine html datei einbinde und diese aufruf steht da nur "Fehler beim Laden des Java Applet.."
mein Applet dass ich habe startet prima in eclipse. nur wenn ich es mit
Code:
<applet code="T12.class" width="800" height="600"></applet>
in eine html datei einbinde und diese aufruf steht da nur "Fehler beim Laden des Java Applet.."
Code:
public class T12 extends Applet {
public InputPanel inputPanel;
public MainPanel mainPanel;
public HeadingPanel headingPanel;
public MenuPanel menuPanel;
public static MainController mainController;
public void init() {
super.init();
setLayout(new GridBagLayout());
this.setSize(800, 600);
headingPanel = new HeadingPanel();
menuPanel = new MenuPanel();
mainPanel = new MainPanel();
inputPanel = new InputPanel(this);
mainController = new MainController(headingPanel, mainPanel, menuPanel, inputPanel);
add(headingPanel, new GridBagConstraints(0, 0, 2, 1, 0.0, 0.0, GridBagConstraints.NORTHWEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0));
add(menuPanel, new GridBagConstraints(0, 1, 1, 2, 0.0, 1.0, GridBagConstraints.WEST, GridBagConstraints.VERTICAL, new Insets(10, 10, 10, 10), 0, 0));
add(mainPanel, new GridBagConstraints(1, 1, 1, 1, 1.0, 1.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(10, 10, 10, 10), 0, 0));
add(inputPanel, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.SOUTHWEST, GridBagConstraints.HORIZONTAL, new Insets(10, 10, 10, 10), 0, 0));
}
}