Hi Folks
The problem I'm having is on the following website:
www.fruittijewels.com
There's a Flash .swf file at the top which is displaying fine in Firefox, but not at all in IE. I've read up on the issues with IE, and implemented what was suggested, but still no luck.
I'd greatly appreciate if someone could have a look at my code and see what the issue is.
This is in the head tag of home.tpl:
Code:
{literal}<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.registerObject("welcomeflash", "9.0.0");
</script>{/literal}
And this is in the Welcome.tpl file:
Code:
<div class="welcome">
<div class="welcome_text" style="height:200px;">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','550','height','144','title','welcomeflash','src','../../../welcome','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../../../welcome' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="550" height="144" title="welcomeflash">
<param name="movie" value="../../../welcome.swf" />
<param name="quality" value="high" />
<embed src="../../../welcome.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="144"></embed>
</object></noscript>
</div>
</div>
The Flash .swf file, AC_RunActiveContent.js, and swfobject.js files are all under the root.
Many thanks