Non identifié (S’identifier/S’inscrire)

Catégories

Vanilla 1.1.2 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorMax1000p
    • CommentTimeDec 12th 2007
     
    Bonjour à tous, félicitation aux créateur de la galerie, un chef d'œuvre ....
    Voila, j'ai un problème avec Firefox, cela fonctionne très bien sous Internet Explorer 7, j'ai ibien lu les infos du forum, je ne comprends pas.
    Voici le lien de ma gallerie : http://www.tichacreation.com/ALBUM/index3.php
    Voici mon code qui fonctionne très bien sous IE 7 :
    <body style="background-color:transparent">
    <table width="1000" height="695" border="0" background="fdGal.jpg">
    <tr><td> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="600">
    <param name="movie" value="picsengine2.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent">
    <embed src="picsengine2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="600" allowtransparency="true"></embed>
    </object>
    </td>
    </tr>
    </table>
    </body>

    Si quelqu'un pouvait m'aider, ce serait très sympa, je charge tout simplement dans un tableau avec mon background mon fichier SWF..

    Encore merci pour ces contributions
    • CommentAuthordarghorn
    • CommentTimeDec 14th 2007
     
    Bonjour,

    C'est très simple, les variables classid et codebase empêchent l'objet d'être affiché dans Firefox.

    Ton code devra donc être le suivant :


    <body style="background-color:transparent">
    <table width="1000" height="695" border="0" background="fdGal.jpg">
    <tr><td> <object data="picsengine2.swf" type="application/x-shockwave-flash" width="1000" height="600">
    <param name="movie" value="picsengine2.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent">
    <embed src="picsengine2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="600" allowtransparency="true"></embed>
    </object>
    </td>
    </tr>
    </table>
    </body>


    la ça devrait normalement fonctionner :)
    • CommentAuthorMax1000p
    • CommentTimeDec 15th 2007
     
    Merci beaucoup, cela fonctionne à merveille ... Je n'avais pas percuté sur ce classid .....