ciao ragazzi non ho mai usato volentieri i suoni nei pulsanti..gusto personale..,ma il cliente niente è di coccio..ora..in situazione normale so farlo..ma per necessità ho un menu in as2..


cosa dovrei mettere affinchè al passaggio del mouse sopra il link si possa sentire un beep?

l'action che ho nel pulsante è:


// config name
name.nomme = "HOME";
// config but
this.stop();
this.onEnterFrame = function() {
if (voltar == true) {
this.prevFrame();
}
}
this.onRollOver = function() {
voltar = false;
this.play();
}
this.onRollOut = function() {
voltar = true;
}

this.onRelease = function() {
if (_root.currMovie == undefined) {
_root.currMovie = "section1";
_root.container.loadMovie("section1.swf");
} else if (_root.currMovie != "section1") {
if (_root.container._currentframe>=_root.container.mi dframe) {
_root.currMovie = "section1";
_root.container.play();
}
}
}



grazie mille siete preziosi!