to put a long text of a label in 2 lines I found in this old post
http://forums.livecode.com/viewtopic.ph ... ton#p92159
these 2 solutions:
1° posted by Mark
and it's works.....You can write a text on multiple lines in a field, copy the text and paste the text in the label field in the properties inspector of your button. Make sure to paste the text in the label field and not in the name field on the properties inspector.....
2° posted by Klaus
but, with this last way, I failed to get the 2 lines of the label......you can directly enter multiline text in the LABEL field of the inspector!
The trick is to use "newline" code: BACKSLASH & n -> \n instead of a RETURN!
Example:
This is line 1\nand this is line 2
Gives:
This is line 1
and this is line 2
Obviously Livecode applies a FORMAT to the content of that field before actually setting the LABEL.
my text is: Domanda Successiva
and typing: Domanda\nSuccessiva
the label don't change (wrap?) where I was wrong?
franco