Как я понял тут принципиально чего-то не так. причём с глубиной.... Исправил (для одной картинки) так.

Код:
var ind:Number = 0;
my_interval = setInterval(automat, (Math.floor(Math.random()*5+1)*1000));
function automat() {
i=0;
rand_file = Math.random();
rand_file = rand_file * 11;
rand_file = Math.floor(rand_file);
var pict_mc:MovieClip = createEmptyMovieClip("pict_mc"+ind,ind);
loader.loadClip(rand_file+".jpg","pict_mc"+ind);
_root["pict_mc"+ind]._x=0;
trace(rand_file+" - "+_root["pict_mc"+ind].getDepth());
ind++;
}