G
I have a page that requires 2 controls to be loaded... one is a Java
Applet, the other is an ActiveX control.
The ActiveX control is dependent on the Java applet being loaded first.
Here is an example of the code I'm using...
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
function appletload () { window.location.href = "launch.jnlp"; }
//--></SCRIPT>
</HEAD>
<BODY onLoad="appletload()">
<p><OBJECT id=nsvplayx
codeBase=http://www.nullsoft.com/nsv/embed/nsvplayx_vp3_mp3.cab#Version=-1,-1,-1,-1
height=480 width=640 border=0
classid=clsid:C5E28B9D-0A68-4B50-94E9-E8F6B4697514>
<PARAM NAME="Location" VALUE="http://localhost:2001/;stream.nsv" ref>
<param name="_Version" value="65536">
<param name="_ExtentX" value="16933">
<param name="_ExtentY" value="12700">
<param name="_StockProps" value="0">
<param name="Bandwidth" value>
<embed type="application/x-nsv-vp3-mp3" width=640 height=480
codebase="http://www.nullsoft.com/nsv/embed/nsvmoz_vp3_mp3.xpi"
location="http://localhost:2001/;stream.nsv"></embed></object>
</body>
What I need is some means to load the activex control - nsvplayx AFTER
the Java applet has loaded. If thats not possible, A simple delay for
10 seconds or so - stopping the activex control from loading while the
Applet downloads and initializes should suffice.
Any ideas? Thanks as always!
Applet, the other is an ActiveX control.
The ActiveX control is dependent on the Java applet being loaded first.
Here is an example of the code I'm using...
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
function appletload () { window.location.href = "launch.jnlp"; }
//--></SCRIPT>
</HEAD>
<BODY onLoad="appletload()">
<p><OBJECT id=nsvplayx
codeBase=http://www.nullsoft.com/nsv/embed/nsvplayx_vp3_mp3.cab#Version=-1,-1,-1,-1
height=480 width=640 border=0
classid=clsid:C5E28B9D-0A68-4B50-94E9-E8F6B4697514>
<PARAM NAME="Location" VALUE="http://localhost:2001/;stream.nsv" ref>
<param name="_Version" value="65536">
<param name="_ExtentX" value="16933">
<param name="_ExtentY" value="12700">
<param name="_StockProps" value="0">
<param name="Bandwidth" value>
<embed type="application/x-nsv-vp3-mp3" width=640 height=480
codebase="http://www.nullsoft.com/nsv/embed/nsvmoz_vp3_mp3.xpi"
location="http://localhost:2001/;stream.nsv"></embed></object>
</body>
What I need is some means to load the activex control - nsvplayx AFTER
the Java applet has loaded. If thats not possible, A simple delay for
10 seconds or so - stopping the activex control from loading while the
Applet downloads and initializes should suffice.
Any ideas? Thanks as always!