Multiline Edittext input box

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
benroll

Hi Guys,

I'm trying to make a UI with a text input box where the user can input paragraphs, including line breaks and hard returns.

I've found the multiline: true parameter, but it doesn't seem to have an effect.

Code: Select all

theString: EditText { text: '" + CLE.theString + "', alignment:['fill','fill'], multiline: true, minimumSize:[240,100] },\
Is there a way to do this?

Thank if you can help.

-Ben.
Paul Tuersley
Posts: 704
Joined: June 5th, 2004, 7:59 am
Location: London, UK

Here's an example from one of my scripts:

Code: Select all

helpET: EditText { text:'', alignment:['fill','fill'], properties:{multiline:true}}, \
Post Reply