codice:
onClipEvent (load) {
	sopra = false;
	this._y = -50;
	this._x = -50;
}
//
onClipEvent (mouseMove) {
	if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
		if (sopra == false) {
			sopra = true;
		}
	}
}
//
onClipEvent (enterFrame) {
	if (sopra == true) {
		this._y += (_root._ymouse-this._y)/3;
		this._x += (_root._xmouse-this._x)/3;
	}
}