Dynamic text filed and font color change

How can i change font color in dynamic text box. Text is loaded from xml.
And i want to make thisway that when user rolls over this text box, or mc over this text box then font color change.

Learn to use flash Help.

ActionScript 2.0 Language Reference
ActionScript classes > TextField > textColor (TextField.textColor property)


this.createTextField("my_txt", 99, 10, 10, 100, 300);
my_txt.text = "this will be red text";
my_txt.textColor = 0xFF0000;

Have fun flashing.

I can make text field. I need funcsion what changes text color on roll over.

Deril answered already
Use TextField.textColor proprety.
Or if U want to change color of some substring - use TextFormat class.