ecco il codice che ho inserito nel frame che carica le immagini:
for (i=1; i<=5; i++) {
loadMovie("immagini1/piccola"+i+".jpg", this["mcc"+i]);

this["bc"+i].onRelease = function() {
K = this._name.substring(2);
//K = this._name;
loadMovie("immagini1/grande"+K+".jpg", vuota);
};
}
//preload per la jpg grande
_root.onEnterFrame = function() {
car = vuota.getBytesLoaded();
tot = vuota.getBytesTotal();
perc.text = "caricamento immagine "+(Math.floor((car/tot)*100))+"%";
(car == tot) && (perc.text="");
};
ora vorrei che queste immagini rimanessero della dimensione originaria pero' non come ovviare questo problema? grazie.ciao