html - How to count number of Flash objects on a webpage -
i wondering possible tags flash objects are:
i have read @ these links in either embed or object tags: http://www.w3.org/wiki/html/elements/embed http://www.w3.org/wiki/html/elements/object
after doing research, appears there several ways place flash on website
<object type="application/x-shockwave-flash"> <video controls src="http://video.example.com/vids/315981"> <a href="http://video.example.com/vids/315981">view video</a>. </video> </object> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <object type="application/x-shockwave-flash" data="mycontent.swf"> </object> </object> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <embed type="application/x-shockwave-flash"> </embed> </object>
am missing way embed flash video? want comprehensive in taking care of cases.
note, classid seems obsolete field, still need take business relationship older websites.
the tag recognized net explorer, while firefox , chrome utilize tag render flash, e.g.
<object width="150" height="150" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <param name="movie" value="/aspnet-ajax/editor/img/userdir/marketing/asp_ajax_banner.swf"> <param name="play" value="true"> <param name="quality" value="high"> <param name="wmode" value="transparent"> <param name="loop" value="false"> <param name="menu" value="false"><embed src="/aspnet-ajax/editor/img/userdir/marketing/asp_ajax_banner.swf" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" wmode="transparent" loop="false" menu="false" height="150" width="150"></object>
as can see object tag has classid attribute show object of type flash. embed tag has type property specified object of type application/x-shockwave-flash. similarities between both tags wmode, quality, loop attributes , film , src values containing location swf file. these strings in custom code.
html html5 flash
No comments:
Post a Comment