ciao a tutti!!
sto facendo un sito in cui ho parecchi swf da preloadare in anticipo e poi mostrarli in un secondo momento... ho usato lo script dell'array che segue... va tutto bene tranne che mentre carica tutte le parti fa dei piccoli flash in cui si vedono, prima di nasconderle...
penso che il comendo sia visible = false ma non saprei dove metterlo...

file = new Array("Video4/img_01.swf",

"Video4/img_02.swf",

"Video4/img_03.swf",

"Video4/img_04.swf",

"Video4/img_05.swf",

"Video4/img_06.swf",

"Video4/img_07.swf",

"Video4/img_08.swf",

"Video4/img_09.swf",

"Video4/img_01.swf",

"Video4/xml/img01.jpg",

"Video4/xml/img02.jpg",

"Video4/xml/img03.jpg",

"Video4/xml/img04.jpg",

"Video4/xml/img05.jpg",

"Video4/xml/img06.jpg",

"Video4/xml/img07.jpg",

"Video4/xml/img08.jpg",

"Video4/xml/img09.jpg",

"Video4/xml/img10.jpg");



fine = function(){

getURL("03_4'.html")

}



simpleMultipleFilePreloader(file, fine);

function simpleMultipleFilePreloader(array, funz_fine) {

var t = _root.createEmptyMovieClip("mysimplepreloader", 1000);

t.createEmptyMovieClip("base", 1001);

t.files = array;

t.nfiles = array.length;

t.num = -1;

t.funzioneFine = funz_fine;

t.carica = function() {

msg = ("...loading " + 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();

}





ringrazio chiunque mi voglia dare una mano!!!