For the record. Someone provided me the solution i show below directly by email:
/**
* Runs on change converting all text to upper case
*/
private function changeHandlerToUpper(event:Event):void{
event.target.text = event.target.text.toUpperCase();
}
which works fine.

