Group: Administrators
Posts: 13K,
Visits: 104K
|
#1: The proper way to force line breaks is to use special characters. This is what should be used.
<text TEXT_multiline> / items = ("This is a~nmultiline text") / hjustify = center </text>
#2: The text is not centered because the element is missing a /size attribute. If the dimensions of the bounding rectangle are not known, there is no center to align to.
<text TEXT_multiline> / items = ("This is a~nmultiline text") / hjustify = center / size = (50%, 50%) </text>
Hope this helps.
|