Ok here is the situation, I have my main scene and inside the scene I have a movie clip called "display_area". I already have a movie clip loaded into my main scene named "test".

The display_area clip has a function exactly like the one below:
this.LoadClipForDisplay= function(nClip:MovieClip):Void
{
// NEED HELP HERE
};

I am calling this function like this:
display_area.LoadClipForDisplay(test);

Now I can access everything I need to know via the nClip variable (such as size, position, etc...) but what I need to do is in this function is add the movieclip that is being passed in nClip into this "display_area" movieclip. So basically when I call display_area.LoadClipForDisplay(test); I will end up with the test movieclip being displayed at 1,1 of the display_area clip.