Ver Mensaje Individual
  #8 (permalink)  
Antiguo 20/04/2007, 09:30
pepaflores
 
Fecha de Ingreso: mayo-2006
Mensajes: 39
Antigüedad: 17 años, 11 meses
Puntos: 0
Re: Problemas con fotos en formato Png.

hola otra vez

me funciona perfectamente pero cuando añado este otro script no me realiza la acccion de cambiar una foto por otra al pasar el raton por encima.

podrias ayudarme ?
por que tu script es incompalibe con este:

<SCRIPT LANGUAGE="Javascript">
<!-- - CAMBIO DE FOTO-->
<!-- Swap images
function Permut (flag,img) {
if (document.images) {
if (document.images[img].permloaded) {
if (flag==1) document.images[img].src = document.images[img].perm.src
else document.images[img].src = document.images[img].perm.oldsrc
}
}
}
function preloadPermut (img,adresse) {
if (document.images) {
img.onload = null;
img.perm = new Image ();
img.perm.oldsrc = img.src;
img.perm.src = adresse;
img.permloaded = true;
}
}
// -->
</SCRIPT>

Un Saludo