addChildAt / DEPTH ISSUE

I’m burnt out badly with the display list…but Merry Xmas

I created two display objects on the main timeline. One is the a loader Object to load my movies into. The second object (container) is a movieclip in the library. The problem is, the loader Object displays on top of container, when container should be on top. Thus, the loader object should be at the very bottom and the other object container should be at the top in the stacking order. In tried EVERYTHING…addchildAt, addchild, you name it…the loader object is still on tp of everything. How do I know? because when I load movies, all the loaded movies are on top of everything on the stage and the container object is on the bottom…I know this is simple, but I spend days on this and I’m literally burnt out…please send me in the right direction…happy xmas; hope u got sum actionscript books under the tree…

Here’s the code…

// Create the loader Object and add it to the stage
var my_loader:Loader = new Loader();
addChild(my_loader);

// Create a displayObejct to hold the housed the loaded movies
var container:blue=new blue();
container.name = “myContainer”;
container.x=10.0;
container.y=74.0;
this.addChildAt(container,1);