ti sei perso una parentesi
codice:
onClipEvent (mouseMove) {
	if (!premuto) {
		if (this.hitTest(_root._xmouse, _root._ymouse, false) && !aperto) {
			if (_currentframe>(_totalframes/2)) {
				gotoAndPlay(_totalframes-_currentframe);
			} else {
				play();
			}
			aperto = true;
		} else if (!this.hitTest(_root._xmouse, _root._ymouse, false) && aperto) {
			if (_currentframe<(_totalframes/2)) {
				gotoAndPlay(_totalframes-_currentframe);
			} else {
				play();
			}
			aperto = false;
		}
	}
}
onClipEvent (mouseDown) {
	if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
		gotoAndStop(11);
		_root.comandi(_parent._name);
		premuto = true;
	}
}