import flashx.textLayout.formats.Direction;
import flash.text.TextFormatAlign;
import flash.text.TextFormat;
var newFormat:TextFormat = new TextFormat();
newFormat.size = 18;
newFormat.color = 0x005522;
newFormat.align = TextFormatAlign.RIGHT;
my_tlf.selectable = true;
my_tlf.direction = flashx.textLayout.formats.Direction.RTL;
my_tlf.defaultTextFormat = newFormat;