Topic: No Animation IE

G.A forum,

Another question from Brian......

I tested a page in IE, FF, Safari and Opera. All is dandy in the latter 3..but good 'ol IE - the animation will not play. It states an updated version of Flash is required. I have Flash 10 installed on my Computer (FF - Mozilla). Do I have to go into IE and download Flash 10 from that browser? Once again confused..

thank you

2

Re: No Animation IE

Hi Brian,
let us see what code you used to embed Flash?

Re: No Animation IE

Hi LM,
Here is the code. I inserted this from FL CS4 to DW CS4 (just basic and playing around gaining hands on experience).

thank you


<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="300" height="200">
  <param name="movie" value="TKJ_Intro_4.swf" />
  <param name="quality" value="high" />
  <param name="wmode" value="opaque" />
  <param name="swfversion" value="6.0.65.0" />
  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
  <param name="expressinstall" value="Scripts/expressInstall.swf" />
  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
  <!--[if !IE]>-->
  <object type="application/x-shockwave-flash" data="TKJ_Intro_4.swf" width="300" height="200">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="6.0.65.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
  </object>
  <!--<![endif]-->
</object>

Re: No Animation IE

I actually had the same issue just recently with DW CS4 - I'm not sure why it does this, but I got the "you need to upgrade" message too. I solved it by using a different method that didn't use the IE conditional comments, though the code was messier that way.

I'll keep an eye out and see what Im says.

5

Re: No Animation IE

The code seems ok after quick look but do check here for more precise code for your embed method or try other from this article.
<rant>
With IE you never know. Sometimes bit of holy water helps. Also, Which @#$@#$ version of IE you got? This new IE8 version seems the same !@#@!@ as IE6 in a sense that not all bugs are known yet. Well, almost.
</rant>
For now SWFobject embed method seems more and more popular. There full documentation on it available so it is quite easy to implement.

Last edited by lm (2009-08-05 03:03:22)

Re: No Animation IE

Thanks guys -

LM,
I have IE 8 installed. I will review the article provided.

As always - thank you!

Bri