import mx.controls.textClasses.TextRange;
private function alterTextSnapshot():void
{
var textRange:TextRange = new TextRange(area, true, area.selectionBeginIndex, area.selectionEndIndex);
textRange.color = 0xff0000;
textRange.letterSpacing = 3;
}