al pulsante:
codice:
on(press){
	corX = this._x;
	corY = this._y;
	startDrag(this);
}
on(release){
	this._x = corX;
	this._y = corY;
	stopDrag();
}