1

是否可以知道显示对象内的文本字段是否是动态的?我正在循环显示对象的所有子项,我只想找到动态文本字段(我也输入了 tf,我想避免它们)THX

4

1 回答 1

3

使用 type 属性,它将返回一个字符串 TextFieldType 枚举值:

//Assuming a DisplayObjectContainer called 'doc':
for (var i:int = 0; i < doc.numChildren; i++) 
{
    var tf:TextField = doc.getChildAt(i) as TextField;
    if (tf != null) // Will be null if the child isn't a TextField
    {
        switch(tf.type)
        {
            case TextFieldType.DYNAMIC:
                trace("Dynamic");
                break;
            case TextFieldType.INPUT:
                trace("Input");
                break;
        }
    }
}

文档很好很清晰:

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html#type

于 2012-09-05T18:34:04.007 回答