Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/05/2009, 20:09
Avatar de Diegoazul
Diegoazul
 
Fecha de Ingreso: mayo-2007
Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 5 meses
Puntos: 67
Respuesta: Problema con Drag and Drop

usa onReleaseOutside asi:


Código:
onClipEvent (enterFrame) {
	this.onPress = function() {
		this.startDrag();
	};
	this.onRelease= this.onReleaseOutside= function() {
		this.stopDrag();
		this._x = -200.5;
		this._y = -18.4;
	};
}