Chiedo aiuto sto impazzendo!

ho 3 frame:

frame1:
codice:
lv = new LoadVars();
lv.load("immagini.txt");
frame2:
codice:
stop();
files = new Array();
lv.onLoad = function() {
	fl = this.filelist;
	files = fl.split(",");
	c = files.length-1;
	nextFrame();
};
frame3
codice:
durata = 10;
frame = 0;

function conta(num_frame) {
	frame_curr = num_frame/durata;
	numero = int(frame_curr);
	return numero;
}

_root.createEmptyMovieClip("foto",1);

foto._x = 0;
foto._y = 0;
foto._width = 190;
foto._height = 185;
foto._alpha=70;


_root.onEnterFrame = function() {
	immagine=files[conta(frame)].toString();
	trace(immagine)
	foto.loadMovie(immagine);
	trace(frame)
	frame++;
}

Il problema è che non mi visualizza le immagini dentro al movieclip "foto"! ma perchè??? sto sclerando!

Grazie.