Odd issue with Flash banner

Associate
Joined
28 Oct 2002
Posts
444
Guys,

I hope someone can help shed light on an odd issue I am having. My flash banner will occasionally fail to play, leaving a blank space..
This only occurs on the index page and not on any of the other pages built with the same Dreamweaver template and thus containing the same code. It also only seems to happen in IE...and only on one machine here...
Very strange.

Any ideas?

I downgraded the swf to Flash Player 6 and Action Script 1.0. No change.
I have tried moving the animation to the root directory, detaching the page from the template and even re-creating it...same result..
 
What method are you using to embed the Flash?.

Are you embedding it via the DW menus? : Insert > Media > Flash?.

If so, the way DW embed's Flash is clunky at best, try using SWF Object instead :-

http://code.google.com/p/swfobject/

Have not tried CS4 yet but apparently SWF Object is the default method that Adobe now use within DW CS4 instead of the old method.

If you do look into it, I recommend the .AIR based Generator which can be had from the link above.

Been using it for a while now and I've not had any issues thus far with embedded Flash. :cool:
 
Thanks for the replies. I am very interested to discover that Dreamweaver does not embed flash as well as it might. Never had a issue before. I am now using CS4.

The code is below:
</div>
<div id="banner">
<table width="613" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="6" align="center" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="420" height="135" align="middle" id="FlashID" title="Flash Banner">
<param name="movie" value="Banner.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 data="Banner.swf" type="application/x-shockwave-flash" width="420" height="135" align="middle">
<!--<![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>

Any ideas?
 
Back
Top Bottom