Originariamente inviato da bacobas
mi pare già di farlo in quanto lancio trace.....

function preload() {

//Valori Riquadro voluto.
var Win_Val_x = _root.mxSpotDimension_X //550;//650;//550;//450;
var Win_Val_y = _root.mxSpotDimension_Y ;//500;//400;//300;
//--------------


trace("Dim X = " + _root.mxSpotDimension_X);
trace("Dim Y = " + _root.mxSpotDimension_Y);
// Var da trovare ---
var Movie_Prec_x_increase = 0;
var Movie_Prec_y_increase = 0;
var Movie_Prec_increase = 0;
//-------------------
var car = 0;
var tot = 0;
car = bitmap.getBytesLoaded();
tot = bitmap.getBytesTotal();
perc = Math.round((car / tot) * 100);
_root.PERC_LOAD = parseInt((car * 100)/tot) + "%";
_root.bImmagine_Load_Full = false;

if (car == tot && bitmap._url != this.url)
{//IMMAGINE CARICATA!!
trace("movie Orig Width = " + bitmap._width);
trace("movie Orig Height= " + bitmap._height);
Ma questa funzione non viene eseguita onEnterFrame, o sbaglio?