AddCHild to a especific frame!

Is is possible to create a movieClip and addChilds to a especefic frame?
Like:
var mc:MovieClip = new MovieClip();
addChild(mc);
mc.gotoAndStop(5);
------ draw circle ----
mc.gotoAndStop(1);
------ drae elipse ----
mc.gotoAndPlay(1);

This eg. does not work!!!