Dynamic text and buttons

I have made a dynamic text with buttons which retrieves txt files and show in dynamic text area

But when I change the format in dynamic area i.e bold,italics
the .txt files do not change

the code I am using for the buttons is:
"on (release) {
loadText = new LoadVars();
loadText.load(“coap.txt”);
loadText.onLoad = function(success) {
if (success) {
// trace(success);
lyrics.html = true;
lyrics.htmlText = this.myNews;
}
};
}
"
Do you know what shall I do?

Thanks