tags:

views:

75

answers:

1

Hi,

The HTML content below the flash content not displaying in IE8 browser. Here is the code:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24" width="100%" height="100%">
 <param name="movie" value="main.swf" />
 <param name="quality" value="high" />
 <param name="menu" value="false" />
 <param name="allowfullscreen" value="true" />
 <!--[if !IE]> <-->
  <object data="main.swf" width="100%" height="100%" type="application/x-shockwave-flash">
     <param name="quality" value="high" />
     <param name="menu" value="false" />
     <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" />
     <param name="allowfullscreen" value="true" />
     FAIL (the browser should render some flash content, not this).
  </object>
 <!--> <![endif]-->
</object>

How do I fix this issue?

A: 

Rather than debugging this, you can do cross-brower Flash embedding with swfobject.

Jeffery To
Sorry, but IMHO using JavaScript to "correct" bad coding just makes things worse.
RoToRa
Ahh, I misread the question. Sorry!
Jeffery To