grazie mille!!

io usavo:
recipiente.onEnterFrame = function() {
car = this.getBytesLoaded();
tot = this.getBytesTotal();
if (car == tot && tot>1024) {
play();
}
};
ma funzionava solo su pc e con IE, mentre con altri browser e il mac no.

questo e' lo script che hai usato tu:
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("mad1.jpg");
a = setInterval(preload, 200);

brevemente mi faresti capire vuoto._url != _root.url, a = setInterval(preload, 200);???

grazie mille!!!!