Still trying to control loaded swf

i have two movies (movie0 and movie1):

movie1 has a simple animation and a stop(); in the first frame…
movie0 has a button that will load movie1 onto a blank Movieclip (named container) or just on level1 and then play the loaded movie… (supposedly) :puzzled:

here are the codes i’ve already tried…
//----------
on (release){
loadMovie(“movie1.swf”,1);
_level1.movie1.gotoAndPlay(2);
}
//----------
on (release){
container.loadMovie(“movie1.swf”);
container.movie1.gotoAndPlay(2);
}
//----------

i’m using mx 2004
but somehow it doesn’t work… need help… :-/ bad…