codice:
var l = 438;
var t = 150;
var r = 438;
var b = 350;
due.onPress=function()
{
	this.startDrag(true, l, t, r, b);
	this.onMouseMove = function()
	{
		// la posizione dell'altro si ottiene sottraendo,
		// alla posizione iniziale, lo spostamento 
		// effettuato da questo
		uno._y = t - (this._y - t);
		updateAfterEvent();
	}
}
due.onRelease=function()
{
	stopDrag();
	delete this.onMouseMove;
}