ESC TEXT

From Macros Wiki
Jump to navigationJump to search

Up

Command

ESC_TEXT <replace escape sequences>


Control the automatic expansion of escape sequences in text strings and string variables before they are use with message boxes or written to text files.
When enabled (the startup default), the text "\n" is converted to a new line. "q" is converted to a double quotes character..

Parameters

<replace escape sequences>
1=replace escape sequences, 0=do no replace.

Example

a$ = "This is\n2 Lines"
ESC_TEXT 1
Message a$
This is
2 Lines


a$ = "This is\n2 Lines"
ESC_TEXT 0
Message a$
This is\n2 Lines