Problems loading movie, help plz

Hey guys, firstly id like to say hello to everyone on forums, iam new here.

Ok, iam trying to load external swf files into “holder” movie clip the problem is that when swf loads, apter preloader it goes into second frame and stops. Now the idea is movies will pan long image to right and left depending on position of mouse. but it looks like movies just stops after preloader. here is code using holder movie clip:

[COLOR=Sienna]this.createEmptyMovieClip(“holder”,10);
holder.loadMovie(“PhotomanScroller.swf”, 10);
holder._x = 20.9;
holder._y = 80.2;[/COLOR]

now i tried similar technique, but loading swf into layer instead of movie clip. movie loads and plays, but i cant reposition it on my coordinates. how can i position swf loaded into layer to following coordinates. here is code using layers:
[COLOR=Sienna]
loadMovieNum(“PhotomanScroller.swf”, 2);
setProperty(_level2, _x, 20.9);
setProperty(_level2, _y, 80.2);[/COLOR]
or
[COLOR=Sienna]_level2._x = “20.9”;
_level2._y = “80.2”;[/COLOR]

Please guys if anyone knows, i appreciate any help.

Thnx,
Dimitry