I insert a text object called Text2.
Now in an action I set the text of this to an expression from a plugin object called texter. (texter.setit)
now setit sets returns text like this:
exps.getinfo = function (ret)
{
currentinfo=currentinfo.replace("& Newline &",Newline);
ret.set_string(currentinfo);
};
now currentinfo is a global javascript variable and where i want newlines i insert the text "& Newline &", now when I return the string to the Text2 object i replace all "& Newline &" with Newline. But it doesnt work.
So the question is can you insert some text code to let construct text object know that there should be a new line here like maybe " line 1 \n\r line 2" would show on screen like:
line 1
line 2
Oh how complex...