bonjour a tous je dois faire un page html avec une banniere en flash en bas de page et au dessus une iframe avec des page html qui défile toutes les 20 secondes j'aimerais savoir si c possible et comment faire et si vous aevz le code parfait ( j'en demande peut etre un peu trop) voici ce que j'ai fait bien sur ça ne marche pas mais c'est la seul piste que j'ai pour le faire j'espere que vous pourrais m'aider.
D'avance merci
<html>
<head>
<title>essai</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--.Style1 {font-weight: bold}-->
</style>
<script type="text/javascript">
var cpt=0
var msg = new Array(
"\\srvorapa1axl\Totem\affichageEcran\Micro\Productivité.html" , "toto.html",
"titi.html","bla.html","tata.html"
)
function fnct() {
document.getElementById("AffMsg").innerHTML = msg[cpt];
cpt+=1;
if (cpt>=msg.length) cpt=0;
setTimeout("fnct()", 20000);
}
window.onload=fnct
</script>
</head>
<body>
<colgroup>
<col width="1%"><col width="99%"></colgroup>
<tbody>
<tr>
<table width="985" height="500">
<tr>
<td width="985" height="500" bgcolor="#999999">
<iframe src="AffMsg" name="diaporama" width="985" height="630" frameborder=no></iframe>
</table>
<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--.....--><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
[ Lien ]"
WIDTH="985" HEIGHT="100" ALIGN="">
<PARAM NAME=movie VALUE="texte_defilant/texte_defilant.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#0066FF> <EMBED src="texte_defilant/texte_defilant.swf" quality=high bgcolor=#0066FF WIDTH="985" HEIGHT="100" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</body>
</html>