TypeError: Error #1085: The element type "br" must be terminated by the matching end-tag "</br>".
So this piece of code works as intended:
privacyPolicy.htmlText = "<br>First line.<br>Second line.";
However, when I'm downloading the same message from a php file I get:
TypeError: Error #1085: The element type "br" must be terminated by the matching end-tag "</br>".
Also, I'm trying to create a hyperlink in ym text field. I've tried this:
hLink.htmlText = "<a href='http://mylink.com/>Click Here</a>";
But, the the text field is blank.
