
09/07/2002, 12:15
|
 | Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 2 meses Puntos: 61 | |
Re: ¿Qué hago con los decimales? Vamos a ver. Vamos a crear 2 documentos html. Uno llamara al siguiente, ok?
el "madre" vamos a llamarlo index.html y su código es:
<html>
<head>
<title>Abridor</title>
</head>
<body>
<script>
aviso=window.open('aviso.html', '', 'fullscreen,');
aviso.resizeTo(140,120);
aviso.moveTo(200,200);
</script>
</body>
</html>
y el llamado aviso.html que tiene el siguiente código:
<html>
<head>
</head>
<body onblur="focus()" style="border:2px solid black;background:silver;color:black;font:normal 8px verdana;" scroll="no">
<table width="100%" height="100%"
<tr valign="middle">
<td width="45"><img src="alerta.gif" width="43" height="40" alt="" border="0"></td><td align="center" style="background:silver;color:black;font:nor mal 10px verdana;">
Mensaje
</td>
</tr>
<tr valign="bottom">
<td align="center" colspan="2">
<input style="background:silver;color:black;font:nor mal 10px verdana;" onclick="window.close()" type="button" value="Aceptar">
</td>
</tr>
</table>
</body>
</html>
Copialos y guardalos en el mismo directorio con los nombres que te he dcho. Ejecuta el index.html y dime que te parece.... |