Немного изменил код, так правильней.

Код:
//звуки добавиш сам, не забуть в Properties звука поставить галочку, как для Мувика.
//Названия звука 1-9.
var aSound:Array = ["1", "2", "3", "4", "5", "6", "7", "8", "9"];
var nS:Number;
this.onMouseDown = function() {
var mySound:Sound = new Sound();
nS = Math.floor(Math.random()*aSound.length);
mySound.attachSound(aSound[nS]);
mySound.start();
aSound.splice(nS,1);
var _interval = setInterval(fSound, mySound.duration);
function fSound() {
nS = Math.floor(Math.random()*aSound.length);
mySound.attachSound(aSound[nS]);
mySound.start();
aSound.splice(nS,1);
if (aSound.length == 0) {
clearInterval(_interval);
_interval = null;
}
}
};