codice:
onClipEvent(mouseDown){
	if(this.hitTest(_root._xmouse,_root._ymouse, true)){
		this.duplicateMovieClip("nuovo", 1);
		this._parent.nuovo.startDrag(true);
	}
}
onClipEvent(mouseUp){
	stopDrag();
}