Succede che fai casino con i clearInterval. Prova qualcosa così:
codice:
//per la foto utente
function loadClip(clip, url)
{
var mc = clip.createEmptyMovieClip("loader", 1);
mc._alpha = 0;
clip.onEnterFrame = function()
{
var c = mc.getBytesLoaded();
var t = mc.getBytesTotal();
if (c >= t && t > 24){
delete this.onEnterFrame;
mc.onEnterFrame = function()
{
if(++this._alpha >= 100)delete this.onEnterFrame;
}
}
}
}
loadClip(foto, "utenti/foto7.jpg");
loadClip(logo, "utenti/logo7.jpg");
loadClip(bgk, "immagini/bgkrose.jpg");