Hi all,
I have some presentation slides with some labels attached so that every time they are updated, the text in the slide reads them and automatically updates itself. The point is, I would like to concatenate these different labels within the same text object/display, in a way that every label is written in a different line. However, so far I haven't found the typical "newline" command in the doc to solve this, and neither the \n \r appear to solve the issue cause they do not work out.
Setting up new texts nodes and separating them is another possibility, but just configuring one object which reads all the labels and write them would make everything simpler.
Here's the code of the "Text Display" field, to let you have an idea (obviously the "\n" are not working at all").
Object current = ownerobject(c); treenode textnode = param(1); /***popup:DisplayText*/ /**Display Text*/ /** \nText: */ string text = /***tag:text*//**/current.up.text1 + "\n" + current.up.text2 + "\n" + current.up.text3/**/; textnode.value = text; return 1;
Thanks in advance,
Javi