Get to textfield

i have a dynamic textfield inside a movieclip, and currently i am accessing it this way:

(because i know textfield is called “textBox”)

mc.textBox.textColor = 0XFFFFFF;
e.target.textBox.textColor = 0XFF0000;

is there a way to get to the textfield regardless of its name?

getChildAt(number) isnt going to help me because there might be other shapes inside that movieclip (but only one textfield though) and lets suppose i dont know at what child index textfield actually is.