![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/11/2002, 22:05
|
![Avatar de CORE](http://static.forosdelweb.com/customavatars/avatar18325_1.gif) | Usuario no validado | | Fecha de Ingreso: abril-2002 Ubicación: Merida
Mensajes: 2.165
Antigüedad: 22 años, 10 meses Puntos: 3 | |
se puede hacer en FLASH o se puede hacer con simple HTML Ventana Chome sin Flash
Código:
<SCRIPT LANGUAGE="javascript">
var pagina = "chomereless.htm";
var ancho = 400;
var alto = 200;
var centroAncho = (screen.width/2) - (ancho/2);
var centroAlto = (screen.height/2) - (alto/2);
jlm = window.open(""+pagina+"","miVentana","fullscreen,toolbar=0,location=0,
directories=0,status=0,menubar=0,scrollbars=0,resizable=0")
jlm.resizeTo(ancho,alto)
jlm.moveTo(centroAlto,centroAncho)
</SCRIPT>
haces una tabla y metes los iconos para poder cerrarla para derectar el SWF :
Código:
<script language="JavaScript">
<!--
function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0
var ok=false; document.MM_returnValue = false;
with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
ok=(plugins && plugins[plgIn]);
} else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1
if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;
else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;
else ok=autoGo; }
if (!ok) theURL=altURL; if (theURL) window.location=theURL;
}
//-->
</script>
</head>
<body onLoad="MM_checkPlugin('Shockwave
Flash','entrada.html','http://www.macromedia.com/shockwave/download/download.cgi?
P1_Prod_Version=ShockwaveFlash&Lang=LatinAmerica&P5_Language=Spanish',true);
return document.MM_returnValue">
suerte! |