Random Swf with no repeat

In AS 2.0, I have an array of swfs that I’d like to play randomly end to end. With the following code I can make the swfs random without a repeat of the same swf back to back. What I’d like to do is have all the swfs play randomly until all have been shown. and then repeat again randomly or load a separate final swf.

From what I’ve read I need to add a splice function to remove values from my array but I can’t seem to make it work. Can anyone tell me what I need to add to this to make it work? Here is my code:

_global.fileNames = [“movie01.swf”,“movie02.swf”,“movie03.swf”];
_global.getRandomFile=function(oldFile){
do { var newFile = fileNames[Math.round(Math.random()*(fileNames.length-1))]; }
while (oldFile==newFile);
return newFile;
}
_global.loadRandomFile=function(){
_global.fileToLoad = getRandomFile(_global.fileToLoad);
loadMovieNum(fileToLoad,0);
}

loadRandomFile();