Announcement

Collapse
No announcement yet.

Problem with SWF object

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Problem with SWF object

    Hi all,

    I have a problem with a page which contain my banners for customers :

    the website is here : http://www.idols.fr/acatalog/Banni_res_Shop.html

    when I use Internet Explorer, I can see the banner but it doesn t work with FireFox (Version 3)

    To insert the flash banners, I had input this code in the text cell in "Fragment details"

    Code:
    !!<
    <br>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
    width="468" height="100" id="idols_ban1" align="">
    <param name=movie value="http://www.idols.fr/ban/idols_ban1.swf"><param name=quality value=high>
    <embed src="idols_ban2.swf" quality=high  width="468" height="100" name="idols_ban2" align=""
    type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
    </embed></object>
    >!!
    Is there a different source code for the mozilla firefox browser to read correctly the flash object ?

    Thanks a lot for u r help
    Attached Files
    --
    IDOLS Rock Merchandising

    Spécialiste de la vente de produits et mode US/UK depuis 1986 sur Avignon, PACA.
    Adresse : 52 rue carnot 84000 AVIGNON FRANCE
    Tel : 04 90 82 24 41. Ouvert du mardi au samedi de 10H/12H - 15H/19H

    Site internet :
    http://www.idols.fr
    http://www.lonsdalefrance.fr
    http://www.westcoastchoppers.fr

    Vous y trouverez les marques :
    Fred Perry, Lonsdale, Dr Martens, West Coast Choppers, Guinness, New Rock, Black Label Society, Hardcore United...

    #2
    Your code has an error - you were referring to two different swfs (ban1 and ban2) - you also need to use the full URL of http://www.idols.fr/ban/idols_ban1.swf in all instances of it's use in the code.

    Try this:

    Code:
    !!<
    <br/>
    <object height="100" width="468" align="" id="idols_ban1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"><param value="http://www.idols.fr/ban/idols_ban1.swf" name="movie"/><param value="high" name="quality"/><embed height="100" width="468" align="" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="idols_ban2" quality="high" src="http://www.idols.fr/ban/idols_ban1.swf"/></object>
    >!!

    Comment

    Working...
    X