Line breaks in MAPINFO's exittext/entertext
Posted: Sat Sep 18, 2010 5:28 am
How to properly add line breaks in MAPINFO cluster definition's exittext/entertext ? If I do it like this:
then it doesn't work because \n escape codes aren't parsed.
If I do it like this:ZDoom blames me for an unterminated string constant.
Finally, if I do it like this:it also doesn't work as the lines below the exittext are interpreted as unknown properties.
So, how should I do it?
Code: Select all
exittext = "Some text\nMore text"
If I do it like this:
Code: Select all
exittext = "Some text
More text"
Finally, if I do it like this:
Code: Select all
exittext = "Some text"
"More text"
So, how should I do it?