hi,
im storing text for a text field in XML. my problem is with the new line characters…
if i do this…
my_txt.text = “test
test”;
i get:
test
test
if i have an xml node like this:
<n>test
test</n>
and then assign it to a textfield’s .text i get this:
test
test
anyone know how to make it look like this:
test
test
using the xml way.
thanks