I'm running Windows and having problems creating a script UI with multiline static text
var reminder = "Welcome to the jungle\n\nWe've got fun 'n' games\n\nWe got everything you want"
var dlg = new Window ("dialog");
dlg.add ("statictext", undefined, reminder);
dlg.center();
dlg.show ();
I've tried \n and \r but the text isn't wrapping. Any ideas?