i have an mc with a textbox which iām loading with data from an external text file. the box is set to ārender as htmlā but the tags in the text file are being ignored.
(iāve tried everything i can think of, including starting from scratch several timesā¦)
is there something that iām missing, or is flash just playing up?
To assign HTML formatted text to the TextField, you use the htmlText property.
[AS]loadHandler = function (success) {
if (success) {
// load data into textbox
textBox.htmlText = this.text;
} else {
gotoAndStop(āerrorā);
}
};[/AS]