Duplicate movie within empty movie?

I need some help creating an empty movie clip ‘container’ and within this clip is a movie clip ‘box1’ and a duplicate ‘box2’ offset on the x axis by 650.

Here is what I have so far, any help would be great…

this.createEmptyMovieClip(“container”, this.getNextHighestDepth());
this.container.attachMovie(“box”,“box1”,this.getNextHighestDepth(),{_x:0, _y:250});
this.container.globe1.duplicateMovieClip(“box2”,this.getNextHighestDepth(),{_x:650, _y:250});

replaces container.box1 with container.box2 on runtime. how do I get both to show up?

got it, overlooked the depth…

this.createEmptyMovieClip(“container”, this.getNextHighestDepth());
this.container.attachMovie(“box”, “box1”, 1, {_x:0, _y:250});
this.container.box1.duplicateMovieClip(“box2”, 2, {_x:650, _y:250});