View Single Post
Old 2008-03-25, 07:47 PM   #7
RedCherry
Of all the things I've lost, I miss my mind the most.
 
RedCherry's Avatar
 
Join Date: Apr 2004
Location: Middle of the Desert, Pahrump, NV
Posts: 3,187
Send a message via ICQ to RedCherry
Thanks cd34, I did this:

Code:
 <OBJECT id="VIDEO" width="320" height="240"
   CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
   type="application/x-oleobject">
    
   <param name="URL" VALUE="video.wmv">
   <param name="SendPlayStateChangeEvents" VALUE="True">
   <param name="AutoStart" VALUE="True">
   <param name="uiMode" value="none">
   <param name="PlayCount" value="9999">
   <param name="rate" value="1">
   <param name="balance" value="0">
   <param name="currentPosition" value="0">
   <param name="invokeURLs" value="-1">
   <param name="volume" value="90">
   <param name="mute" value="0">
   <param name="stretchToFit" value="-1">
   <param name="windowlessVideo" value="0">
   <param name="enabled" value="-1">
   <param name="enableContextMenu" value="-1">
   <param name="fullScreen" value="0">
   <param name="enableErrorDialogs" value="0">
   <embed type="application/x-mplayer2"
      pluginspage = "http://www.microsoft.com/windows/mediaPlayer/"
      id="Player"
      src="video.wmv"
      width="384"
      height="310"
      showcontrols="0"
      showstatusbar="0"
      autostart="true">
   </embed>
And put the larger size in the embed tag, and that allowed me to have the controls and have it all show up in firefox.
RedCherry is offline   Reply With Quote