TextFormatAlign.JUSTIFY doesn't appear to be working
I have this in my code, but it doesn't seem to affect the the text in a single line text field that I am loading from XML. Can anyone offer a suggestion on how I can get my field to force justify one line of text?
var format:TextFormat = new TextFormat();
format.align = TextFormatAlign.JUSTIFY;
clientClip.characteristicClip.clientCharacteristic.text = clientData[flx]["characteristics"];
clientClip.characteristicClip.clientCharacteristic.defaultTextFormat = format;