Come al solito ho un problemino!
Ho realizzato un menu a tendina usando questo script
il pulsante...
on (release) {
tendina.play();
}
on (rollOut) {
tendina.tempo=getTimer();
}
movieclip:
onClipEvent (load) {
tempo=0;
}
onCLipEvent(enterFrame) {
if ((getTimer()-tempo)>3000) {
tempo=0;
this.cotoAndPlay(11);
}
}
adesso non so come farlo scomparire dopo un po che ho cliccato sul pulsante come faccio?