Ciao a tutti,
questo che segue č lo script che uso per caricare 1 solo file esterno,visto che non mi ha dato mai nessun tipo problema,mi chiedevo se fosse possibile modificarlo per fargli caricare file esterni (JPG) in maniera random..
Grazie 1000


function preload() {
car = vuoto.getBytesLoaded();
tot = vuoto.getBytesTotal();
perc = Math.round((car/tot)*100);
stato.text = "Loading . . . "+perc+"%";
if (car == tot && vuoto._url != _root.url) {
clearInterval(a);
stato.text = "";
vuoto._alpha = 100;
}
}
vuoto._alpha = 0;
vuoto.loadMovie("images/erik_001.jpg");
a = setInterval(preload, 200);