affichage flash transparent [SWF]
Bonjour,
J'ai un pblm car ma page n'affiche pas mon flash transparent. J'ai le cadre, le cadre disparait au bout de 15 secondes (javascript) mais l'image n'est pas isible...
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<BODY bgcolor="#cccccc">
<div id="flash" style="position: absolute; top: 0px; left: 0px; z-index: 1">
<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="550" HEIGHT="400" id="transparente" ALIGN="">
<PARAM NAME=movie VALUE="pdf002a_main.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="pdf002a_main.swf" quality=high wmode=transparent bgcolor=#FFFFFF WIDTH="550" HEIGHT="400" NAME="transparente" ALIGN="" wmode="transparent"
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
</div>
<script>
nbrSecondes = 15;
setTimeout('cacheFlash()',nbrSecondes*1000);
function cacheFlash()
{
document.getElementById("flash").style.visibility="hidden";
}
</script>
</BODY> |
le fichier .swf se trouve bien dans le meme dossier que la page HTML et j'utilise flash player 6.....
Si quelqu'un peut m'aider....
MERCI