nel tuo sito hai questo pezzo di codice
codice:<body> ... <td width="713" height="297" valign="top"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="713" height="297"> <param name="movie" value="swf/intro.swf"> <param name=quality value=high> <embed src="swf/intro.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="713" height="297"></embed> </object> </td>
Modifica nel seguente modo
Nell'header della pagina scrivicodice:<body onload="showFlash()"> ... <td width="713" height="297" valign="top" id="flashcnt"> </td>
Però non l'ho ancora provato e l'ho scritto di corsa, quindi può darsi che non funzioni o non sia crossbrowser...codice:<head> <script type="text/javascript"> function showFlash() { var myObject = document.createElement('object'); myObject.width = "713"; myObject.height = "297"; myObject.type = "application/x-shockwave-flash"; myObject.data = "swf/intro.swf"; document.getElementById('flashcnt').appendChild(myObject); } </script> </head>
fammi sapere
Ciao

Rispondi quotando