Bueno... creo quedo asi
Código PHP:
var someListener:Object = new Object();
someListener.onSetFocus = function(oldFocus, newFocus) {
var nTxt:TextField = eval(newFocus);
//
status_txt.htmlText = "<b>setFocus triggered</b>";
status_txt.htmlText += "<textformat tabStops='[20,80]'>";
status_txt.htmlText += " \toldFocus:\t"+oldFocus;
status_txt.htmlText += " \tnewFocus:\t"+newFocus;
status_txt.htmlText += " \tgetFocus:\t"+Selection.getFocus();
status_txt.htmlText += "</textformat>";
//
nTxt.onChanged= function () {
this.setTextFormat(my_fmt);
}
};
:)