How do you do a carriage return in a Text Object? I want output on different on lines.
I tried "Chr(13)"
INI.ItemString("TimeTrial", "Name") & "Chr(13)" & str(global('BestTime')/1000) & " seconds"
Try using the constant Newline.
It's worked for me in other areas of Construct.
Krush.
Worked great. Thanks KrushBrother
Develop games in your browser. Powerful, performant & highly capable.
It's worth noting Construct never changes any part of a string in double quotes. "Chr(13)" will always appear as those literal characters in the string, since nothing is ever substituted inside double quotes.