Hi all,
I’m trying to get the height of a TextInput box (or any component for that matter) that is nested with in MC. When trace the height of the TextInput directly, it comes out at 22, great! But when I trace the height of the MC it’s 100pixels!!!?? See below
import fl.controls.*
var mc = new MovieClip()
var textIn = new TextInput()
mc.addChild(textIn)
addChild(mc)
trace(mc.height) //outputs 100
trace(textIn.height)//outputs 22
Strange no?
Thanks