Add MovieClip in container

Hello All!!
i need help, i have function

private function content():void
        {
            var textContent:myMovie;
			var mc:MovieClip = new MovieClip();
            clip1.x = objectMC.x;
            clip1.y = objectMC.y;
            textMC.color = objectMC.textColor;
            textMC.size = objectMC.textSize;
            var mc1:Number = 0;
            mmc = 0;
            while (mmc < 0)
            {
                textContent = new myMovie(mmc, textMC, objectMC.width, objectMC.square, focus[mmc].borderColor, focus[mmc].focusObj[1], focus[mmc].focusObj[3], objectMC.legendBackColor);
                textContent.y = mc1;
                clip1.addChild(textContent);
                textContent.clipProp = focus[mmc].name;
                focusnick93[mmc] = textContent;
                mc1 = (mc1 + textContent.height);
                mmc++;
            };

            addChild(clip1);
		}

function working good, but i need addChild(clip1); add in other movieClip or ScrollPane, how i can add clip1 in other movieClip!!

if i make: var container:new MovieClip(); then container.addChild(clip1); now working, how make corrected? thanks