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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't insert Windows Media Player

Status
Not open for further replies.

kbestle

Technical User
Mar 9, 2003
67
US
I have downloaded the FP Windows Media Player component form the MS website. When I try to insert it on a page I get the properties dialog box and it says "No description is available for this FP component" and "There are no settings for this FP component" I am using FP 2003 on XP sp2.

Thanks

Kent
 
You might try this code:
Code:
<object id="MediaPlayer" width=320 height=286
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
standby="Loading Microsoft® Windows® Media Player components..."
type="application/x-oleobject"
codebase="[URL unfurl="true"]http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">[/URL]
<param name="filename" VALUE="interview_fox_video.asx">
<param name="autoStart" VALUE="true">                
<param name="showControls" VALUE="true">
<param name="ShowStatusBar" value="true"> 
<param name="Autorewind" VALUE="true">
<param name="ShowDisplay" VALUE="false">   
<embed src="interview_fox_video.asx" WIDTH=320 HEIGHT=286 type="application/x-mplayer2" name=MediaPlayer autostart=1 showcontrols=0 showstatusbar=1 autorewind=1 showdisplay=0>
</embed></object>
Replace the source (interview_fox_video.asx) in BOTH places to the source of your media file.

__________________________
Corey

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top