Page 1 of 1

Embed Tag Attributes in <Object> (????)

Posted: 28 Jul 2014 14:03
by reppiz
Hej guys,

is it possible to get the "Embed Tag Attributes" from the Documentation: https://wiki.videolan.org/Documentation ... attributes
working in the Object Tag?

I need this for the IE, and it seems that the IE only supports the Object Tag, but the Object Tag is not supporting most of the attributes like: branding, controls or toolbar.

Could anybody may help me out? :(

Re: Embed Tag Attributes in <Object> (????)

Posted: 29 Jul 2014 12:25
by da2424
is it possible to get the "Embed Tag Attributes" from the Documentation: https://wiki.videolan.org/Documentation ... attributes
working in the Object Tag?
Yes, it's only another syntax, here is an example:

Code: Select all

<object id="vlc" classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"> <param name="toolbar" value="false" /> <param name="autoplay" value="false" /> </object>
I need this for the IE, and it seems that the IE only supports the Object Tag
That's right for IE older than v10.


Note: The parameter "controls" does not work in the object tag (it's a bug). Instead, use "toolbar".

I hope I could help you ;)