Tanja: Opera und Applets...

Beitrag lesen

Hallo,
ich habe ien Skript was mir html-code erzeugt.
Hier soll ein Applet aufgerufen werden, mit einem dynamisch von einer Seite gelieferten Wert.
Das funktioniert ja auch alles wunderbar, bloss nicht unter Opera.
Hier erhalte ich immer die Fehlermeldung "Applet not found"... warum?
Wo doch alle anderen Browser das Applet finden...
Der Pfad stimmt, die Archiv Dateien sind vorhanden ...
Viele Grüße
Tanja

var htmlText="";
htmlText +="<html>\n";
htmlText +="<head>\n";
htmlText +="</head>\n";
htmlText +="<body bgcolor="#ffffff">\n";
htmlText +="<applet ";
htmlText +=" codebase="../"";
htmlText +=" code="Informatik.musik.navigator.NavApplet"";
htmlText +=" Archive="swingSURE.jar,windowsSURE.jar,swingRES.jar,windowsRES.jar"";
htmlText +=" width="150"";
htmlText +=" height="250"";
htmlText +=" alt="">";
htmlText +=" <PARAM Name="Id" Value="";
htmlText += parent.content.id();
htmlText += "">";
htmlText +="<PARAM Name="Selection" Value="Wert">";
htmlText +="</applet>\n";
htmlText +="</body>\n";
htmlText +="</html>\n";
document.write(htmlText);
document.close();

document.open() habe ich extra weggelassen, weil Opera sonst noch nicht mal die Fehlermeldung rauswirft ...