flash - Problem Loading swf on chrome -


i have following swf loaded html tag , not use swfobject.on google chrome see after mouse click on html page swf file shows up.any 1 knows why or doing wrong here

<div> <object id="mymoviename" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <param value="movie.swf" name="movie"> <param value="high" name="quality"> <param value="#ffffff" name="bgcolor"> <embed align=""    type="application/x-shockwave-flash"    name="mymoviename"    bgcolor="#ffffff"    quality="high"    src="movie1.swf"    href="movie1.swf"> </object> </div> 

have tried takeing embed node out of object node?

it like:

<object id="mymoviename" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">    <param value="movie.swf" name="movie">    <param value="high" name="quality">    <param value="#ffffff" name="bgcolor"> </object> <embed align=""    type="application/x-shockwave-flash"    name="mymoviename"    bgcolor="#ffffff"    quality="high"    src="movie1.swf"    href="movie1.swf"/> 

thats because object node doesn't have embed child node in html dtd, browsers can deal it, apparently chrome not 1 of them, i'm guessing here.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -