Flash website didnt fully help

Im trying to learn how to load a external swf when a certain link gets clicked in my movie, I used the info over at adobe and it does load but I cannot seem to set the coordinates of the new swf it loads it in the top left corner. anyone think they can shed some light on this for me?

 var myLoader:Loader = new Loader();
 addChild(myLoader);
 var url:URLRequest = new URLRequest("myalbum.swf");
  myLoader.load(url); 

Have you tried to position it by something like this?

myLoader._x=100
myLoader._y=100

If that doesn’t work then you might have to test when loading was completed and position it then.

Tried this and get 2 errors

1119 access of possibly undefined property _x through a reference with static type flash.display:Loader.myloader._x=100

1119 access of possibly undefined property _y through a reference with static type flash.display:Loader.myloader._y=100

Too late guys it was so easy i feel retarded