uso este codigo para activar la pelicula flash en el explorador. Funciona muy bien pero si el usuario NO tiene el flashplayer instalado me gustaría que le lleve a la pagina de adobe para que se lo descargue e instale
COMO MODIFICO ESTE CODIGO PARA LLEVARLO A LA PAGINA ADOBE Y HACERLE DESCARGAR e INSTALAR EL REPRODUCTOR FLASH
html:
Código:
y el flash.js<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Full Screen Scroller</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="javascript" src="flash.js"></script> <style type="text/css"> <!-- body,html{ margin:0px; padding:0px; height:100%; } --> </style> </head> <body scroll=no> <script language="javascript">flash ("miPelicula.swf","100%","100%")</script> </body> </html>
Código:
function flash(movie,w,h){ document.writeln("<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="+w+" height="+h+">"); document.writeln("<param name=\"movie\" value="+movie+">"); document.writeln("<param name=\"quality\" value=\"high\">"); document.writeln("<embed src="+movie+" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width="+w+" height="+h+"></embed></object>"); }