newline Constant | Flash 4 |
insert a line break |
A newline character.
The constant newline represents a standard line break character (ASCII 10). It is synonymous with the escape sequence "\n" or the HTML tag <BR> and is used to force a line break in a block of text (usually for display in a text field variable).
myOutput = "hello" + newline + "world";
TextField.htmlText, TextField.text; Section 4.5.2.2