Flex에서 UITextField를 사용할때. 해당 TextField의 속성을 정하는 방법은 여러가지가 있다. setStyle을 이용해서 할수도 있지만. 해당 글자중 부분만 적용하고자 할경우에는 TextFormat을 이용해서 할수가 있다. // UI TextFiled sample code public function drawText():void{ var tUI:UIComponent = new UIComponent(); var tText:UITextField = new UITextField(); tText.text = "우헤헤"; tUI.addChild(tText); _component.addChild(tText); var tFormat:UITextFormat = tText.getUITextFormat()..