29/03/2007, 13:28
|
| | Fecha de Ingreso: octubre-2003
Mensajes: 304
Antigüedad: 21 años, 1 mes Puntos: 0 | |
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! |