salve a tutti.... io ho questo script... che vien da flash5!
questo si riferisce all'apertura di un menu' voce2

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 (34);
_root.comandi(_parent._name);
premuto = true;
}
}

io dovrei aggiungere un controllo sugli altri menu'... se sono aperti si devono comunque chiudere
if (voce1.aperto = true){
_root.voce1.play (35);}

funzionerà?!?! e dove dovrei inserirlo secondo voi?!?!
grazie mille!!
ciao