New Line issue in text label when text is read from a file

In my application, I provide the help in different language. So I read a different file for each language.
In some place of my text, I want to insert new line, so I use \n to insert new line.
This "\n" is working fine if it is Embedded in the app, but does not work if it comes form a file
To clarify:
This is working fine:
image
But if the text is from a text file:
image
and I read the text file and display it
image
It does not work, and the \n are displayed instead of creating a new line.

Here is my test app:
Test_Linefeed.aia (2.0 KB)

and the result: Top with embedded text, below with text from a file:

What is the correct way to have linefeed in a text from a file?

Write the text file with actual new-lines instead.

1 Like

Thanks a lot.
So easy when someone provides the solution :grinning: