Salve a tutti,

sto provando a far caricare una jpg in un mc del mio filmato utilizzando il comnado: MovieClipLoader.loadClip()

tutto ok, tranne il fatto che non riesco a visualizzare il progresso del caricamento in nessun modo, anche se nella reference è scritto che c'è la possibilità di farlo: "MovieClipLoader.onLoadProgress()"

comunque questo è il mio codice...

codice:
//start
_root.createEmptyMovieClip("testMc", 1);
// inizializza
var my_mcl = new MovieClipLoader();
myListener = new Object();
myListener.onLoadStart = function(target_mc) {
        trace("===============start==================");
        trace(target_mc+"__START");
        trace("TARGET URL : "+target_mc._url);
        trace("================/start===============");
};
myListener.onLoadProgress = function(target_mc, loadedBytes , totalBytes ) {
        trace("** PROGRESS");
        trace(target_mc+"__PROGRESS");
        trace(loadedBytes+"/"+totalBytes+"(bytes)");
        trace("** / PROGRESS");
};
myListener.onLoadComplete = function(target_mc) {
        trace("==============complete===================");
        trace(target_mc+"__COMPLETE");
        var loadProgress = _root.my_mcl.getProgress(target_mc);
        trace("LOADED :"+loadProgress.bytesTotal+" bytes");
        target_mc.play();
        target_mc._lockroot = true;
        trace("==============/complete==============");
		//_root.prog = (loadedBytes+"/"+totalBytes+"(bytes)");
};
myListener.onLoadInit = function(target_mc) {
        trace("==== onloadinit");
        trace(target_mc+"ON LOAD INIT");
        trace("WIDTH : "+target_mc._width);
        trace("==== / onloadinit");
};

my_mcl.addListener(myListener);
//da caricare
my_mcl.loadClip("02.jpg", "mc_target");

grazie in anticipo a chiunque mi sappia dire perchè ho tutti i trace tranne quelli del progress

Frik, il caso umano.