Ciao, rieccoti il codice, ho aggiunto stop() dopo la dichiarazione di array, e poi ho aggiunto anche _root.msg.txt= ..... per scrivere a video il file che stai caricando.
Lo script avanza al secondo frame solo dopo aver caricato tutte e 3 le immagini. Per vedere come funziona dai una occhiata a http://www.myssarte.it e premi su enter e poi guarda in basso a sinistra.




immagini=new array("imm1.jpg","imm2.jpg", "imm3.jpg")

stop(); // aggiunto

function Preloader(array, funz_fine) {
var t = _root.createEmptyMovieClip("preloader", 1000);
t.createEmptyMovieClip("base", 1001);
t.files = array;
t.nfiles = array.length;
t.num = -1;
t.funzioneFine = funz_fine;
t.carica = function() {

_root.msg.text="Sto caricando il file ... "+this.files[this.num];

this.num++;

if (this.num == this.nfiles) {
this.funzioneFine();
this.unLoadMovie();
} else {
this.base.loadMovie(this.files[this.num]);
}
};
t.onEnterFrame = function() {
if (this.base.getBytesLoaded() == this.base.getBytesTotal() &&
this.base.getBytesTotal() > 100) {
this.carica();
}
};
t.carica();
}


fine=function(){
play();
}

Fammi sapere

Bye