Question
<br/> is interpreted as </li><li> in TextField.htmlText
I have a text filed created like this:
createTextField();
.type = "dynamic";
.multiline=true;
.html = true;
.htmlText = myText;
myText = "<ul><li> blah-blah blah-blah </li></ul>";
The problem is that the text is too long and I inserted <br/> in the middle
like that:
myText = "<ul><li> blah-blah <br/> blah-blah </li></ul>";
which works fine in HTML, but in FLASH this creats another list item as if
it was
myText = "<ul><li> blah-blah </li><li> blah-blah </li></ul>";
What is the problem and how do I get round it
createTextField();
.type = "dynamic";
.multiline=true;
.html = true;
.htmlText = myText;
myText = "<ul><li> blah-blah blah-blah </li></ul>";
The problem is that the text is too long and I inserted <br/> in the middle
like that:
myText = "<ul><li> blah-blah <br/> blah-blah </li></ul>";
which works fine in HTML, but in FLASH this creats another list item as if
it was
myText = "<ul><li> blah-blah </li><li> blah-blah </li></ul>";
What is the problem and how do I get round it