HTML coding and Windows Media Player

T

TBSSiadmin

I would like to know why the following coding for Windows Media Player does
not give me access to the fast forward/rewind buttons on the control bar?
These buttons are greyed-out. I have the Play-Pause-Stop-Mute-Volume Control
buttons. We are using a .wmv file. Here is the code. I hid the Web Site and
file name. Thanks for the help.

<body>
<!-- begin embedded WindowsMedia file... -->
<table border='0' cellpadding='0' align="center">
<tr><td>
<OBJECT id='mediaPlayer' width="420" height="320"
classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'

codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
standby='Loading Microsoft Windows Media Player components...'
type='application/x-oleobject'>
<param name='fileName' value="http://www.somewhereUSA.org/Video
Files/Myfile.wmv">
<param name='animationatStart' value='true'>
<param name='transparentatStart' value='true'>
<param name='autoStart' value="true">
<param name='showControls' value="true">
<param name='loop' value="false">
<EMBED type='application/x-mplayer2'
pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
bgcolor='darkblue' showcontrols="true" showtracker='-1'
showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="480"
height="320"
src="http://www.somewhereUSA.org/Video Files/Myfile.wmv"
autostart="true" designtimesp='5311' loop="false">
</EMBED>
</OBJECT>
</td></tr>
 
C

Charles Ezzell \(MSFT\)

if your wmv file is not indexed, that would be one problem.

--
--
HTH,
Charles Ezzell
Microsoft Host Integration Server

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
 
Top