Hi,
woran kann es liegen, dass folgendes Applet im Eclipse und IE korrekt funktioniert, im Firefox jedoch nicht, was sich dadurch äußert, dass die Buttons (NORTH und SOUTH) nicht angezeigt werden, die Grafik dagegen schon:
___________________________________________________________________________
import java.applet.*;
import java.awt.*;
public class Stromkreis extends Applet
{
Image MyImage;
Canvas Grafik;
public void init()
{
this.setBounds ( 0, 0, 600, 600 );
this.setLayout( new BorderLayout () );
Container buttonFrame1 = new Container ();
buttonFrame1.setBounds ( 0, 0, 300, 300 );
buttonFrame1.setLayout ( new FlowLayout () );
Container buttonFrame2 = new Container ();
buttonFrame2.setBounds ( 0, 0, 300, 300 );
buttonFrame2.setLayout ( new FlowLayout () );
Grafik = new ImgShowComponent ( "leitergrafik.gif" );
this.add ( BorderLayout.CENTER, Grafik );
String labeled1 = new String ( "Farbe wechseln 1" );
Button click1 = new Button(labeled1);
buttonFrame1.add ( click1 );
String labeled2 = new String ( "Farbe wechseln 2" );
Button click2 = new Button(labeled2);
buttonFrame2.add ( click2 );
this.add ( BorderLayout.NORTH, buttonFrame1 );
this.add ( BorderLayout.SOUTH, buttonFrame2 );
this.setVisible ( true );
}
}
___________________________________________________________________________
Einbindendes HTML:
<applet code="Stromkreis.class" width=899 height=460>
</applet>
___________________________________________________________________________
Gruß Michi