Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/05/2009, 17:09
Avatar de Lynxcraft
Lynxcraft
 
Fecha de Ingreso: noviembre-2007
Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 17 años
Puntos: 51
Respuesta: Ayuda con MouseOver

no se si esto este bien lo hecho muy por arriba pero espero que te sirva

Código PHP:
function Mover(xyaceleracion) {
    var 
PosIniX=_root.show.foto.x
    
var PosIniY=_root.show.foto.y
    _root
.show.foto.onEnterFrame = function() {
        
this._x += (x-this._x)/aceleracion;
        
this._y += (y-this._y)/aceleracion;
        if (
Math.abs(x-this._x)<0.5 && Math.abs(y-this._y)<0.5) {
            
this._x PosIniX;
            
this._y PosIniY;
            
delete this.onEnterFrame;
        }
    };

__________________
Sobran las ideas cuando faltan ganas de trabajar en ellas
Lynxcraft