Sullo stage i MC sono istanziati: f1, f2,f3

Al primo pulsante è assegnata questa azione:
on (release) {
if (_root.f2._currentframe<>1) {
_root.f2.gotoAndPlay(11);
}
if (_root.f3._currentframe<>1) {
_root.f3.gotoAndPlay(11);
}
cl = setInterval(function () { _root.f1.gotoAndPlay(2);clearInterval(cl);}, 1000);
// 1 secondo o tempo neccessari per la chiusura
}

Al secondo pulsante è assegnata questa azione:
on (release) {
if (_root.f1._currentframe<>1) {
_root.f1.gotoAndPlay(11);
}
if (_root.f3._currentframe<>1) {
_root.f3.gotoAndPlay(11);
}
cl = setInterval(function () { _root.f2.gotoAndPlay(2);clearInterval(cl);}, 2000);
// 2 secondi o tempo neccessari per la chiusura
}

Al terzo pulsante è assegnata questa azione:
on (release) {
if (_root.f2._currentframe<>1) {
_root.f2.gotoAndPlay(11);
}
if (_root.f1._currentframe<>1) {
_root.f1.gotoAndPlay(11);
}
cl = setInterval(function () { _root.f3.gotoAndPlay(2);clearInterval(cl);}, 2000);
// 2 secondi o tempo neccessari per la chiusura
}