Buona sera a tutti..... ho due problemini che non riesco a risolvere.....

Intanto metto lo script che ho sul mio primo frame:

Codice PHP:
foto_array = new Array();
stop();
path "images/";
function 
preload_foto() {
    
fondo.loadMovie(path+foto_array);
    
fondo._alpha 100;
    
_root.caricamento._visible false;
    
fondo.onEnterFrame = function() {
        
car this.getBytesLoaded();
        
tot this.getBytesTotal();
        if (
car == tot && car>1024) {
            
delete this.onEnterFrame;
        } else {
            
_root.caricamento._visible true;
        }
    };
}
leggi = new LoadVars();
leggi.onLoad = function(success) {
    if (
success) {
        
foto_array this.foto;
        
preload_foto();
    }
};
leggi.load("perflash.asp"); 
allora... il primo problema:
il mio movie "caricamento" in teoria dovrebbe vedersi fino a che non è caricata l'immagine... dopo di che dovrebbe andare in visible=flase....

secondo problema:
non riesco ad inserire un fadein alla foto.....

ultimo problema:
quando ho fatto tutto, in teoria dovrei andare al frame successivo dal quale devo caricare su questa immagine altri swf....
dove lo metto il comando?

grazie a tutti in anticipo.