Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/03/2007, 13:28
miguellara
 
Fecha de Ingreso: octubre-2003
Mensajes: 304
Antigüedad: 20 años, 6 meses
Puntos: 0
De acuerdo Re: startDrag(); Doble

EY! muchas gracias! Lo resolvi en parte con mi script y en parte con el tuyo, me vino al pelo:

_root.miImagen.onPress = function(){

_root.miImagen.startDrag();

this.onEnterFrame = function() {
_root.miZoom._y = _root._ymouse;
_root.miZoom._x = _root._xmouse;
};
};

_root.miImagen.onRelease= function(){

_root.miImagen.stopDrag();
delete this.onEnterFrame;
};


Graciass!