Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Flash just not working in IE!

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design
 
Thread Tools Search this Thread
  #1  
Old 08-14-2008, 12:39 AM
 
Waynarky Waynarky is offline
 

Member
  
Join Date: Jun 2008
Posts: 14
 

Default Flash just not working in IE!

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
__________________
Wayne Thompson
X-Cart GOLD 4.1.10
Fancy Categories
Reply With Quote
  #2  
Old 08-14-2008, 05:07 AM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: Flash just not working in IE!

I ran into this problem the other day. My old javascript trick for flash nolonger worked.

I just put the Flash html straight into the file with out using the javascript and it worked just fine.
__________________
xcart 5.1.2
Reply With Quote
  #3  
Old 08-14-2008, 07:58 AM
 
Waynarky Waynarky is offline
 

Member
  
Join Date: Jun 2008
Posts: 14
 

Default Re: Flash just not working in IE!

Do you mean the <embed> tag? I thought that was the problem in the first place?
__________________
Wayne Thompson
X-Cart GOLD 4.1.10
Fancy Categories
Reply With Quote
  #4  
Old 08-14-2008, 09:11 AM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Flash just not working in IE!

Wayne,

The flash is not displaying in Safari3/mac (intel) as well.

Are you hip to the SWFObject ?

Another flash embed tool is JW FLV MEDIA PLAYER

Good luck.

Jeremy
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote
  #5  
Old 08-14-2008, 09:17 AM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: Flash just not working in IE!

http://www.arwvisions.com/shibuminet/flash.html

I just put this in my file.


<div id="container">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="790" height="550" id="shibumi" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="shibumi.swf" />
<param name="quality" value="high" /><param name="bgcolor" value="#000000" />
<embed src="shibumi.swf" quality="high" bgcolor="#000000" width="790" height="550" name="shibumi" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div>
__________________
xcart 5.1.2
Reply With Quote
  #6  
Old 08-14-2008, 09:32 AM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: Flash just not working in IE!

I suppose this works on IE7 but not IE6? ANyone know how to set up both browsers on one machine?
__________________
xcart 5.1.2
Reply With Quote
  #7  
Old 08-18-2008, 07:17 AM
 
Waynarky Waynarky is offline
 

Member
  
Join Date: Jun 2008
Posts: 14
 

Default Re: Flash just not working in IE!

Hi Guys

I got it working! Had to correct the path to the swfobject.js file.

Yeah I'm down with SWFObject, dawg Couldn't understand why is wasn't working! I was thinking the path was relative to the root.

Ashley, check out the Browser shots site: http://browsershots.org
You can test your site in pretty much all browsers. Handy dandy tool.

Shot O's
__________________
Wayne Thompson
X-Cart GOLD 4.1.10
Fancy Categories
Reply With Quote
  #8  
Old 08-28-2008, 11:11 PM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: Flash just not working in IE!

For anyone else...
http://www.xcartmods.co.uk/adding-flash-x-cart-mods-pg-8.html
__________________
xcartmods.co.uk
Reply With Quote
  #9  
Old 10-23-2008, 05:39 AM
 
scraps scraps is offline
 

Advanced Member
  
Join Date: Mar 2004
Posts: 60
 

Default Re: Flash just not working in IE!

Phil,

As always, you are the best!!!!

Thank you!!!

To anyone who may not want there flash to loop, you can add a:

<PARAM NAME=loop VALUE=false>

to the script on Phil's page

just under the

<param name="movie"

of the script.

For those not in the know, you should extract and upload the contents of the flash.zip on Phil's site to your skin 1 folder just as it unzips, then you only change the path for the xcart.swf file to your path.

Again, my sincerest thanks Phil.

Marian
__________________
Marian
Host: Successful Hosting
X-Cart version 4.1.9
PHP 4.3.10
MySql 4.0.22-standard
Web server Apache 1.3.33 (Unix)
Operating system Linux
Perl 5.8.3
http://www.seamstobesew.com
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 06:05 AM.

   

 
X-Cart forums © 2001-2020