Targeting mc children only

Hi everybody,

i want to target all the mc nested in a parent mc and I’m using this script


for (var i:uint = 0; i<container_mc.numChildren; i++)
{
         if (container_mc.getChildAt(i) is MovieClip)
        {
                trace ("mc");
         }
}

The problem is that it is not targeting only the movieclips, but also the text fields and the drawing objects (Are they considered movieclips?).
There is a way to get only the real movieclips?

Thank you