Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Embedding windows media player in FP2002

Status
Not open for further replies.

ptomaine

Technical User
Aug 10, 2003
4
US
I know I have been able to embed Windows Media Player in Frontpage before, I did it with a previous website I built. I cannot seem to find any information on the Internet about doing this. I want my website viewers to have control over the video-rewind, stop, etc. All I can find in FP is the insert>picture>video option. I would be grateful if anyone knows how to make this work. I am on the verge of getting out my old cd-roms to see if I backed up the website, just to see how I did it before.

Thanks,

Dave
 
I would use just the source code:

<object id=&quot;MediaPlayer&quot; width=320 height=286
classid=&quot;CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95&quot;
standby=&quot;Loading Microsoft® Windows® Media Player components...&quot;
type=&quot;application/x-oleobject&quot;
codebase=&quot;<PARAM NAME=&quot;filename&quot; VALUE=&quot;interview_fox_video.asx&quot;>
<PARAM NAME=&quot;autoStart&quot; VALUE=&quot;true&quot;> <PARAM NAME=&quot;showControls&quot; VALUE=&quot;true&quot;>
<param name=&quot;ShowStatusBar&quot; value=&quot;true&quot;> <PARAM NAME=&quot;Autorewind&quot; VALUE=&quot;true&quot;>
<PARAM NAME=&quot;ShowDisplay&quot; VALUE=&quot;false&quot;>
<EMBED SRC=&quot;interview_fox_video.asx&quot; WIDTH=320 HEIGHT=286 type=&quot;application/x-mplayer2&quot; name=MediaPlayer autostart=1 showcontrols=0 showstatusbar=1 autorewind=1 showdisplay=0>
</EMBED></OBJECT>

And changing the source (interview_fox_video.asx) in BOTH places to the path of your video. A lot quicker / easier I think.


__________________________
Corey

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top