Skip to content Skip to sidebar Skip to footer

How To Remove Controls From Embedded Video?

Is it actually impossible to remove the UI controls from this embedded video? http://www.w3schools.com/html/tryit.asp?filename=tryhtml_objectmplayer

Solution 1:

Taking your W3Schools example code -

<!DOCTYPE html><html><body><objectwidth="100%"height="100%"type="video/x-ms-asf"url="3d.wmv"data="3d.wmv"classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"><paramname="url"value="3d.wmv"><paramname="filename"value="3d.wmv"><paramname="autostart"value="1"><paramname="uiMode"value="full"><paramname="autosize"value="1"><paramname="playcount"value="1"><embedtype="application/x-mplayer2"src="3d.wmv"width="100%"height="100%"autostart="true"showcontrols="true"pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed></object></body></html>

Change

<embed... showcontrols="true"...  

to

<embed... showcontrols="false"...

Post a Comment for "How To Remove Controls From Embedded Video?"