Scusate l'ignoranza.... ma ci ho provato fino ad adesso e siccome ho un bel po di urgenza posto la mia richiesta.
A me servirebbe un semplice preload di jpg esterne.

Ho trovato in rete questo codice ma non funge

codice:
//
//create a new movieclip to load
//the external movie into
this.createEmptyMovieClip("holder",1);
//load the external movie into the new movieclip
holder.loadMovie("prova.jpg");
//check the download status of the external
//movie once every frame
this.onEnterFrame=function(){
    //trace the percentage of the movie that has loaded
    percent=(this.holder.getBytesLoaded()/this.holder.getBytesTotal())*100;
    if(!isNan(percent)){
        trace(percent+"% loaded");
    }else{
        trace("0% loaded");
  
    }
    if(percent == 100){
        delete this.onEnterFrame;
        }
}
se avete il codice "funzionante ve ne sarei grato infinitamente

Saluti a tutti e buon week-end