22/10/2010, 15:36
|
| | Fecha de Ingreso: octubre-2010
Mensajes: 3
Antigüedad: 14 años, 1 mes Puntos: 0 | |
Ayuda sobreponer imagenes Hola
Necesito hacer una fotogalería con varias imágenes una sobre la otra, la idea es que al pasar el mouse sobre una imagen esta se ponga encima de las demas y asi sucesivamente he hecho este poero no me funciona correctamente, porque aveces se posan 2 imagenes sobre una o tres si alguien me puede ayudar.
Gracias de antemano
this.onRollOver = function ()
{
if (this.getDepth() < _root.uno.getDepth()){
this.swapDepths(_root.uno);
}
if (this.getDepth() < _root.dos.getDepth()){
this.swapDepths(_root.dos);
}
if (this.getDepth() < _root.cuatro.getDepth()){
this.swapDepths(_root.cuatro);
}
} |