We also needed to accomplish this. Here is the event handler we wrote.
/**
* Runs on change converting all text to upper case
*/
private function changeHandlerToUpper(event:Event):void{
event.target.text = event.target.text.toUpperCase();
}
I hope this helps you out.
Greg

