How can I call a COM component using JavaScript in Mozilla?
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2009-03-09T12:39:20Z
Indexed on
2010/04/14
15:03 UTC
Read the original article
Hit count: 173
I am calling a COM component in IE. Here is the code
<object align="left" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
id="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv">
<param name="FileName" value="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv">
<param name="AutoRewind" value="true">
<param name="AutoStart" value="false">
<param name="ClickToPlay" value="true">
<param name="Mute" value="false">
<param name="ShowControls" value="true">
<param name="ShowDisplay" value="true">
<param name="ShowTracker" value="true">
<param name="PlayCount" value="1">
</object>
It is working fine in IE, but not in Mozilla Firefox.
© Stack Overflow or respective owner