Whe I try and fill up a textarea with multiline text I get an error.
1095: Syntax error: A string literal must be terminated before the line break.
This is because I have put in line breaks to make it more readable in my actions panel. I can add it a line at a time with
mytextBox.appendText ("this is line one ");
mytextBox.appendText ("this is line two ");
but I need a better way to import a load of text to my textbox.
Thanks.