bueno tengo un archivo flash que me abre normalmente con mozilla firefox ,pero con Internet Explorer solo sale un espacio sin nada no se a que se debe el error pero en en el navegador IE me sale esto
el archivo flash lo he creado en Macromedia Flash 8
asi configure en un js
Código:
y si lo incluyo en mi pagina<!-- function fnShowFlash(){ var varFlashURL; var varFlashWidth; var varFlashHeight; if (argu == "top"){ varFlashURL = "flash/header_v8.swf"; varFlashWidth = 766; varFlashHeight = 339; }else if(argu == "avatar"){ varFlashURL = "flash/avatar.swf"; varFlashWidth = 571; varFlashHeight = 108; } document.write('<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="' + varFlashWidth + '" height="' + varFlashHeight + '>') document.write('<param name=movie value="' + varFlashURL + '">') document.write('<param name=quality value=high>') document.write('<param name=wmode value=transparent>') document.write('<embed src="' + varFlashURL + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + varFlashWidth + '" height="' + varFlashHeight + '" wmode="transparent"></embed>') document.write('</object>') } //-->
<script language="javascript">fnShowFlash('top');</script>