PDA

View Full Version : flash src different for IE and FF?


kafi
02-23-2007, 08:05 AM
I am trying to embed flash baner, but this type of src doesnt work in IE:

src="../images/650_60_transparent.swf"

It works in FF though...

In IE only works this: src="650_60_transparent.swf" and then I have to put the .swf in root

Any idea why is that?

Here complete html for my flash baner:

<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"
id="650_60_transparent"
width="650" height="60"
>
<param name="movie" value="650_60_transparent.swf">
<param name="bgcolor" value="#FFFFFF">
<param name="quality" value="autohigh">
<param name="wmode" value="transparent">
<param name="allowscriptaccess" value="always">
<embed
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
name="650_60_transparent"
width="650" height="60"
src="650_60_transparent.swf"
bgcolor="#FFFFFF"
quality="autohigh"
wmode="transparent"
swliveconnect="true"
allowscriptaccess="always"
>
<noembed>
</noembed>
</embed>
</object>


THANK YOU!!!

CyberAlien
02-23-2007, 12:06 PM
It will work fine, just make sure you change path to swf in both <object> and in <embed>

kafi
02-26-2007, 08:02 PM
Thank you I will try that :)

I thought src only matter ...