HTML-code in dynamic text-square

Hey!

Is it possible to get html-code in a textfile that is linked to a dynamic textsquare in a flash-movie, to execute as code, not just be displayed as pure text?

Create your textbox.

Give it an instance name of “myText” (without quotes)

Add these Actions

text = "Hello, This is my text";
_root.myText.html = true;
_root.myText.htmlText = text;

Since this board converts HTML, I left out the HTML text in the variable “text” You can add them though.

I know this isn’t exactly what you wanted, but it is easily incorporated into dynamically loaded text from an external .txt file.

Especially if you are using kirupas tutorial on scrolling dynamically loaded text.