Нет. просто приватные поля. Не расширяется ни от чего
Добавлено через 1 минуту

Код AS3:
package com.in4core.text
{
import flash.text.TextField;
import flash.text.TextFormat;
/**
* ...
* @author in4core
*/
public class DisplayText extends Object
{
private static var _textfield:TextField;
public static function addField ( font:String = null , size:uint = 12, bitmapFonts:Boolean = false,
autosize:String = 'left', isMulti:Boolean = false, text:String = '' ) : TextField
{
_textfield = null;
_textfield = new TextField();
_textfield.defaultTextFormat = setFormat(size, font);
_textfield.autoSize = autosize;
_textfield.text = text;
if (isMulti) _textfield.multiline = true;
_textfield.selectable = false;
if (!bitmapFonts) _textfield.antiAliasType = 'advanced';
if (font != null) _textfield.embedFonts = true;
else font = '_sans';
return _textfield;
}
private static function setFormat( size:uint, font:String ):TextFormat {
var tf:TextFormat = new TextFormat();
tf.size = size;
tf.font = font;
return tf;
}
}
}