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);