# Problem with load movie

**URL:** https://forum.kirupa.com/t/problem-with-load-movie/254789
**Category:** Uncategorized
**Created:** [March 15, 2008, 1:58pm UTC](https://forum.kirupa.com/t/problem-with-load-movie/254789 "2008-03-15T13:58:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dinoxx](https://avatars.discourse-cdn.com/v4/letter/d/278dde/32.png) [@dinoxx](https://forum.kirupa.com/u/dinoxx)
#### Post date: [March 15, 2008, 1:58pm UTC](https://forum.kirupa.com/t/problem-with-load-movie/254789/1 "2008-03-15T13:58:26Z")

</div>

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…)  
}  
};  
}  
//-----------------------------------
