Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/11/2004, 09:40
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Algo asi

Código:
clip_mc.onPress = function() {
	this.startDrag();
};
clip_mc.onRelease = function() {
	stopDrag();
	if (this._x<100 && this._y<100) {
		trace("Soltado entre Y 100 y Y 100");
	}
};
Obviamente necesitas un Clip llamado clip_mc..