Forum Moderators: not2easy

Message Too Old, No Replies

Embed wmv in Firefox 2.x

         

pmgreen

3:43 pm on May 24, 2007 (gmt 0)

10+ Year Member



I have a video that is embeded in a page and plays great in IE, but can't get it to work in Firefox 2. The video "window" doesn't show at all.

Here is the current code

<OBJECT ID="Player" width="330" height="310"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">

<PARAM name="autoStart" value="True">
<PARAM name="uiMode" value="full">
<PARAM name="volume" value="100">
<PARAM name="mute" value="false">
<PARAM name="URL" value="http://source.com/m_dir/mmcontroller.nsf/getMedia?OpenAgent&title=2007_architecture_video">
</OBJECT>

Any ideas how to get this video embeded in FireFox 2.x

phranque

6:30 am on May 25, 2007 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



it's probably an activex support problem.
try using the embed tag as well:
<OBJECT ID="Player" width="330" height="310"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">

<PARAM name="autoStart" value="True">
<PARAM name="uiMode" value="full">
<PARAM name="volume" value="100">
<PARAM name="mute" value="false">
<PARAM name="URL" value="http://source.com/m_dir/mmcontroller.nsf/getMedia?OpenAgent&title=2007_architecture_video">

<embed src="http://source.com/m_dir/mmcontroller.nsf/getMedia?OpenAgent&title=2007_architecture_video" width="330" height="310" autoStart="True" uiMode="full" volume="100" mute="false"></embed>

</OBJECT>

rroomm

7:04 am on May 25, 2007 (gmt 0)

10+ Year Member



Try this. It works for me (almost)
[support.microsoft.com...]
Roman