22/11/2015, 21:14
|
| | Fecha de Ingreso: julio-2012
Mensajes: 234
Antigüedad: 12 años, 4 meses Puntos: 9 | |
Respuesta: Redireccionar flash Cita:
Iniciado por AngelKrak Prueba con esto y dime que tal amigo ;)
Código HTML:
Ver original<!DOCTYPE html> <script type="text/javascript"> function detectarflash(){ flashpage = "flash.htm" upgradepage = "plugin-flash.htm" nonflashpage = "html.htm" cantdetectpage = "no-se-pudo-detectar-plugin.html" noautoinstall = "" if(navigator.appName == "Microsoft Internet Explorer" && (navigator.appVersion.indexOf("Mac") != -1 && navigator.appVersion.indexOf("3.1") != -1)){ noautoinstall = "true"; } if (navigator.appName == "Microsoft Internet Explorer" && noautoinstall != "true"){ window.location=flashpage; } else if(navigator.plugins){ if(navigator.plugins["Shockwave Flash"]){ window.location=flashpage; } else if(navigator.plugins["Shockwave Flash 2.0"]){ window.location=upgradepage; } else{ window.location=nonflashpage; } } else { window.location=cantdetectpage; } } <body onLoad="detectarflash()">
|