Probléme avec un menu fla

Résolu
bobo450 Messages postés 8 Statut Membre -  
 bugs20007 -
Bonjour,
je voudrai remplacer ces 2 image:
<td img src="images/designkit_04.gif" width="105" height="34" alt="">
<img src="images/designkit_04.jpg" width="105" height="34" alt=""></td>
<td><img src="images/designkit_05.gif" width="106" height="34" alt=""></td>

par un fichier flash de meme taille (211*34)
merci de me dire ou je doit entrer ce code

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload2.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="211" height="34" id="menu" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="menu.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="menu.swf" quality="high" bgcolor="#ffffff" width="211" height="34" name="menu" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="https://get.adobe.com/flashplayer/" />
</object>
Configuration: Windows XP
Internet Explorer 7.0

2 réponses

  1. bugs20007
     
    Salut,

    tu intégre le code a la fin et tu place l'annimation a la place de l'image dans ton code
    0
  2. bugs20007
     
    Voila un exemple ou j'ai créer un tableau et ou j'ai inserer l'annimation flash :

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>test</title>
    <script src="DWConfiguration/ActiveContent/IncludeFiles/AC_RunActiveContent.js" type="text/javascript"></script>
    </head>

    <body>
    <table width="200" border="1">
    <tr>
    <td><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','
    width','1024','height','100','src'
    ,'file:///C|/Users/bugs/AppData/Local','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version
    =ShockwaveFlash','movie','file:///C|/Local//Sharing Folders/djdumsss@hotmail.fr/oorang' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=
    "http://fpdownload2.macromedia.com/get/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1024" height="100">
    <param name="movie" value="file:///C|/Local/Microsoft/Sharing Folders/oorang.swf" />
    <param name="quality" value="high" />
    <embed src="file:///C|/Sharing Folders/djdumsss@hotmail.fr/oorang.swf" quality="high" pluginspage=
    "https://get.adobe.com/flashplayer/" type=
    "application/x-shockwave-flash" width="1024" height="100"></embed>
    </object></noscript></td>
    </tr>
    </table>
    </body>
    </html>
    0