Grazie Mille del suggerimento and80,
cmq ho risolto stamattina proprio con quella Classe...
resta solo un problema, anche al completamento del caricamento width ed height non vanno...
o meglio... impostando _width ed _height le immagini non compaiono!
ti posto il codice dell'intera funzione:
codice:
caricaImg = function(img:String, Id:Number)
{
var mcL:MovieClipLoader = new MovieClipLoader();
var mmm:Object = new Object();
scroller.contentMain["wB"+Id].prel_img._visible = false;
mcL.loadClip(img,scroller.contentMain["wB"+Id].Limg);
mmm.onLoadStart = function() {
scroller.contentMain["wB"+Id].prel_img._visible = true;
scroller.contentMain["wB"+Id].Limg._visible = false;
scroller.contentMain["wB"+Id].prel_text.text = "";
}
mmm.onLoadProgress = function() {
tot = scroller.contentMain["wB"+Id].Limg.getBytesTotal();
car = scroller.contentMain["wB"+Id].Limg.getBytesLoaded();
perc = int(car/tot * 100);
var my_t:Object = new Tween(scroller.contentMain["wB"+Id].prel_img, "_width", Strong.easeOut, scroller.contentMain["wB"+Id].prel_img._width, (129 * perc) / 100, 0.5, true);
scroller.contentMain["wB"+Id].prel_text.text = "LOADING IMAGE... "+perc+"%";
}
mmm.onLoadComplete = function() {
scroller.contentMain["wB"+Id].Limg._width = 129;
scroller.contentMain["wB"+Id].Limg._height = 87;
scroller.contentMain["wB"+Id].Limg._x = -63.5;
scroller.contentMain["wB"+Id].Limg._y = -88.5;
scroller.contentMain["wB"+Id].prel_text.text = "";
scroller.contentMain["wB"+Id].prel_img._visible = false;
scroller.contentMain["wB"+Id].Limg._visible = true;
}
mcL.addListener(mmm);
}