aqui esta la direccion de donde tengo la animacion.
http://palurdo.foroes.net/
Código:
  
lo que quisiera es que fuera aleatorio pero que a su vez no se repitan var nombre_arr = new Array("video1.swf", "video2.swf", "video3.swf", "video4.swf", "video5.swf", "video6.swf");
MovieClip.prototype.load_random = function (swf)
{
    this.loadMovie(swf);
};
this.createEmptyMovieClip("cont_mc", 1);
cont_mc.load_random(nombre_arr[random(nombre_arr.length)]);
cont_mc.onEnterFrame = function ()
{
    if (this._currentframe == this._totalframes && this._totalframes > 1)
    {
        this.load_random(_root.nombre_arr[random(_root.nombre_arr.length)]);
    } // end if
};
 
 

