Mando el codigo de una pagina para que alguna alma caritativa me eche un cable.
Tengo una funcion Canvia Color que pinta los enlaces al pasar el mouse por encima (onMouseOver). A la vez quiero mostrar un mensaje en la barra de estado, pero este solo se muestra al salir el mouse (onMouseOut) y no al entrar (onMouseOver).
Alguien puede ayudarme? Ahi va el codigo :
<html>
<head>
<title>aCTeX</title>
</head>
<SCRIPT>
function CanviColor(Text,Color,Missatge){
window.status = Missatge;
if (Color==1){
Text.style.color='red';
}
if (Color==0){
Text.style.color='#FFFFFF';
}
}
</script>
<body bgcolor="#FFFFFF" text="#000000" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" background="Imatges/15.jpg">
<table width="80%" border="0" align="center">
<tr>
<td width="45%">
<table width="100%" border="1" bordercolor="#000000">
<tr>
<td bgcolor="#666666"><img src="Imatges/MUNDO09.gif" width="32" height="32" align="absmiddle">
<font color="#FFFFFF"><b><i><font size="4"><a href="http://147.83.66.43/aCTeX/enllacosAlumne.htm" onMouseOver="CanviColor(this,1,'Entrada')" onMouseOut="CanviColor(this,0,'Sortida')"
text-decoration:none; >ENLLAÇOS</a></font></i></b></font></td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<p><b><img src="Imatges/transparent.gif" width="32" align="left">Navega
per la xarxa per complementar els teus coneixements</b></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p> </p>
</body>
</html>