Ver Mensaje Individual
  #30 (permalink)  
Antiguo 14/06/2002, 11:32
Avatar de epa2
epa2
 
Fecha de Ingreso: abril-2002
Ubicación: Málaga
Mensajes: 1.475
Antigüedad: 22 años, 8 meses
Puntos: 9
Re: Busco Script Con Efecto Raton/marco

Good morning de nuevo. :cantar:

Bueno, en el izquierdo htm he eliminado la etiqueta <base target="principal"> y me dice que
parent.principal no es un objeto al pasar el ratón por lo alto... :(
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>izquierdo</title>
</head >
<table><tr>
<td onmouseover="parent.principal.cambio()" >un dibujo</td><tr>
<td onmouseover="parent.principal.cambio()" >otro dibujo</td>
</tr></table>
</body >
</html

En el derecho htm he incluido la apertura y cierre de comilla en
"this.dibujos = new Image();
this.dibujos[I].src = args[i];"
y al cargar la página me dice "constante de cadena sin terminar" y luego otro mensajito de error
diciendo que se esperaba un objeto. :( :(


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Pagina nueva 1</title>
<html>
<title>Precarga de imágenes</title>
<script language="javascript" >
var imgs;
function inicio() {
imgs = new preCarga("a:/miweb/M6.gif", "a:/miweb/M7.gif");
}
var imagen = 1;
function cambio() {
imagen = (imagen == 1) ? 2 : 1;
document.getElementById("dibujo").src = imgs[(imagen - 1)].src;
}
function preCarga() {
if (!document.images) {alert("imágenes no soportadas"); return;}
this.dibujos = new Array();
var args = preCarga.arguments;
for (var i = 0; i < args.length; i++) {
"this.dibujos = new Image();
this.dibujos[i].src = args;"
}
return this.dibujos;
}
</script>
</head >
<body>
<body onload="inicio()" >
<center>
<img src=A:/miweb/images/M6.gif id=dibujo name=dibujo width="84" height="56">
</center>
</body>
</html>

Y en el frameset sigo viendo los marcos pero no me puede mostrar la página.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>frameset</title>
</head>
<frameset cols="150,*">
<frame name="contenido" src="A:/caricatos/izquierdo.htm">
<frame name="principal" src="A:/caricatos/derecho.htm">
<noframes>
<body>
<p>Esta página usa marcos, pero su explorador no los admite.</p>
</noframes>
</frameset>
</body>
</html>

Sigo teniendo las 3 páginas guardadas en un diskete dentro de una carpeta con el nombre de
caricatos.....uuuuuhhhhhhhhhhhhhhhhhhh.

Bueno, echale un vistazo cuando puedas y ya me contestas.
Salu2
Bye.


porque antes era ciego y ahora veo la luz, mi Señor.