si questa:


codice:
testo.onPress=function(){
	this.startDrag(true)
	this.onEnterFrame=function(){
		this._x=Math.round(this._x)
		this._y=Math.round(this._y)
		trace(this._x + " " + this._y)
	}
	
}
testo.onRelease=function(){
	stopDrag()
	delete this.onEnterFrame
}