Adding WMV player

P

PA-Woodchuck

New here, also been away from FP2003 for a few years. I would like to know
how to add/embed the WMV player. As an example the video is balled
myvideo.wmv

thanks
 
S

Stefan B Rusynko

Get the FP WMP addin
See http://www.microsoft.com/downloads/...ed-f950-4bd8-8e96-adad9335ac77&DisplayLang=en

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| New here, also been away from FP2003 for a few years. I would like to know
| how to add/embed the WMV player. As an example the video is balled
| myvideo.wmv
|
| thanks
|
 
M

Mike Mueller

Here is the code that I use to render the WMP player, with explanation. I
use 2 IF statements. If the browser used is IE, the ActiveX object for WMP
is used, and if not IE then whatever add-in for WMVs is used. The best
add-in for FF that I have come across is the one from MS Port25.
<!--[if IE]>
<object id="player" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
height="350" width="500">
<![endif]-->

<![if !IE]>
<object type="video/x-ms-wmv" height="350" width="500">
<![endif]>
<param name="URL" value="filename.wmv" />
</object>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top