Link to home
Start Free TrialLog in
Avatar of nasteal
nasteal

asked on

Flash works in IE but not Chrome

Ok I am working on a website, however my code for the flash in the header use to work in chrome, but I changed the color from FFFFFF to 00FF00 (white to lime color)

(I know my code probably is crap but, anyone see why it won't work?)

<div class="art-logo">

<img src="/images/store_logo.png"width="192" height="106" />
</div>
<br />
<script type="text/javascript" src="swfobject.js"></script>
<div id="art-flash-area">
<div id="art-flash-container">
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="600" height="200" id="art-flash-object">
    <param name="movie" value="images/flash.swf" />
    <param name="quality" value="high" />
    <param name="scale" value="exactfit" />
    <param name="wmode" value="transparent" />
    <param name="flashvars" value="color1=0x00FF00&amp;alpha1=.50&amp;framerate1=24" />
    <param name="swfliveconnect" value="true" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="<images/flash.swf" width="600" height="200">
      <param name="quality" value="high" />
      <param name="scale" value="exactfit" />
      <param name="wmode" value="transparent" />
      <param name="flashvars" value="color1=0x00FF00&amp;alpha1=.50&amp;framerate1=24" />
      <param name="swfliveconnect" value="true" />
      <!--<![endif]-->
      <div class="art-flash-alt"><a href="https://www.adobe.com/go/getflashplayer"><img src="https://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></div>
      <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
  </object>
</div>
</div>
<script type="text/javascript">swfobject.switchOffAutoHideShow();swfobject.registerObject("art-flash-object", "9.0.0", "expressInstall.swf");</script>
ASKER CERTIFIED SOLUTION
Avatar of gingermoleman
gingermoleman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nasteal
nasteal

ASKER

Thanks, I knew a second set of eyes would help.