package com.arcticcode.greenFlames.text { import flash.text.TextField; import flash.text.TextFormat; public class SimpleTextField extends TextField { public function SimpleTextField(textFormat:TextFormat=null, autoSize:String = "left", selectable:Boolean = false, antiAliasType:String = "normal") { super(); this.autoSize = autoSize; this.defaultTextFormat = textFormat; this.selectable = selectable; this.antiAliasType = antiAliasType; } } }