aggiungi il codice in blu:
codice:
uno = random(6); 
due = uno + 1; 
// "ADESSO FERMATI 3 SECONDI, poi:" 
stop();
tempo = getTimer();
this.onEnterFrame = function() {
   if ((getTimer()-tempo) > 3000)    // tre secondi
        delete this.onEnterFrame;
        gotoAndPlay(due); 
   }
}