Problem
You want to put one MovieClip into another one.
Solution
Using addChild, you can place one MovieClip inside of another one. See the code below for an example.
Detailed explanation
Code:
box_mc.addChild(pic_mc);
pic_mc.x = 0;
pic_mc.y = 0;

Sounrce in attached file.
Source:
display objects2
Thank you for reading.
