embed in html without controls

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dazlia
    Junior Member
    Junior Member
    • Apr 2004
    • 1

    embed in html without controls

    Hi folks,

    Im using the following code to embed my DIVx Avi into a HTML file but it appears with the standard windows media player controls underneath it.

    Is there any way i can hide these controls and also the scrub bar ???

    Heeeeeeelp please, my boss is breathign down my kneck
    I thought it was somehting to do with the 'hidden' files, but it doesnt make any difference

    heres the code im using:-

    <html>
    <head>
    </head>
    <body>
    <object classid="classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="video/x-msvideo" standby="Now Loading..." height="300" width="720">
    <param name="FileName" value="9.avi">
    <param name="AutoStart" value="true">
    <param name="hidden" value="false">
    <b>Cannot Load!</b>
    </object>
    </body>

    </html>

    daz
  • bgwizard
    Junior Member
    Junior Member
    • Aug 2004
    • 1

    #2
    Try this:

    <embed type="application/x-mplayer2"
    name="MediaPlayer"
    width=320
    height=304
    src="wizard_of_oz.wmv"
    showcontrols="0">
    </embed>
    </object>

    Comment

    • MPS
      Digital Video Enthusiast
      Digital Video Enthusiast
      • Mar 2003
      • 358

      #3
      two avi's loading when viewing this post... nice...

      thats what you get when you forget about &gt; and &lt - & g t; and & l t;


      put

      controller="false"

      argument in your embed tag

      Comment

      Working...