2 Replies Latest reply: Aug 27, 2013 5:31 AM by flazh143 RSS

    Internet Explorer and Firefox problem

    flazh143 Community Member

      So I was working on a swf file which I embed with html. Everything looked fine in Google Chrome, but when I tried to open it with Firefox and IE the half of the screen was white.

      Here is the code:

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

      <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

      <head>

      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

      <title>Page</title>

      <style type="text/css">

      <!--

      body {

      height: 100%;

      width: 100%;

      margin: 0;

      }

      -->

      </style>

      </head>

      <body bgcolor="#ffffff">

       

       

       

       

      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="swf" align="middle">

      <param name="allowScriptAccess" value="sameDomain" />

      <param name="movie" value="swf.swf" />

      <param name="quality" value="high" />

      <param name="scale" value="noscale" />

      <param name="bgcolor" value="#ffffff" />

      <embed src="swf.swf" quality="high" scale="noscale" bgcolor="#ffffff" width="100%" height="100%" name="swf" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />

      </object>

      </body>

      </html>