JavaApplet mit Javascript im Mozilla / Netscape aufrufen
wally
- java
Hi Leute!
Ich habe ein JavaApplet das ich mit Javascript aufrufe, das klappt auch einwandfrei im InternetExplorer aber im Netscape nicht!
Könnt ihr mir helfen:
document.write('<applet classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="550" height="320" align="top">');
document.write('<PARAM NAME="code" VALUE="ch.advanced.editor.EditorApplet.class">');
document.write('<PARAM NAME="codebase" VALUE=".">');
document.write('<PARAM NAME="ARCHIVE" VALUE="editorapplet.zip">');
document.write('<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">');
document.write('<param name="host" value="localhost:8080">');
document.write('<param name="fieldId" value="123">');
document.write('<PARAM NAME="scriptable" VALUE="true">');
document.write('</applet>');
THX
Gruss
Wally
hi
Ich habe ein JavaApplet das ich mit Javascript aufrufe, das klappt auch einwandfrei im InternetExplorer aber im Netscape nicht!
was genau klappt nicht, wird es nicht reingeschrieben oder wird es nicht ausgeführt?
so long
ole
(8-)>
Hallo Wally,
Ich habe ein JavaApplet das ich mit Javascript aufrufe, das klappt auch einwandfrei im InternetExplorer aber im Netscape nicht!
document.write('<applet classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="550" height="320" align="top">');
Soweit ich in Erinnerung habe, muß für den Einsatz von LiveConnect im applet-Tag das Attribut "mayscript" stehen, was bei Dir ja offenbar nicht der Fall ist. Mit
document.write('<applet classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="550" height="320" align="top" mayscript>');
könnte es also vielleicht klappen.
Tschau,
apstrakt