Problem with load movie

i have this script for tween class, and it is ok… i have problem with a load movie somebody help me? thanks a lot

//-----------------------------------
import mx.transitions.Tween;
///
function abbatti(cosa:MovieClip) {
var myTween:Tween = new Tween(cosa, “_y”, mx.transitions.easing.Back.easeIn, cosa._y, Stage.height=900, 1, true);
}
///
var elenco:Array = new Array();
/// Array che conterrà i nomi dei filmati da caricare
var carica:Array = new Array() ;
///
elenco.push(clip);
carica.push(“filmx.swf”);
elenco.push(clip1);
carica.push(“film2.swf”);
///
for (i=0; i<elenco.length; i++) {
elenco*.onPress = function() {
for (e=0; e<elenco.length; e++) {
abbatti(elenco[e]);
loadMovie(carica*, _root.container); (here the load movie but doesn’t works…)
}
};
}
//-----------------------------------