is there a way to write:
"The dog ran fast.
The dog ran slow."
using a string? What I mean is is there a way to skip a line between a given amount of text? Like a return key.
-thanks
Printable View
is there a way to write:
"The dog ran fast.
The dog ran slow."
using a string? What I mean is is there a way to skip a line between a given amount of text? Like a return key.
-thanks
someField.htmlText="The dog ran fast\n\nThe dog ran slow.";
Make sure you have a dynamic textfield with an instance name, in this example it is someField, and multiline turned on. You should drag out the field so that it is big enough to contain the text you wish to display in it.
In the properties window for the text field, check the <> button or add another line of code:
someField.html=1;
Good Luck! :D