Page 1 of 1

Write Text File Action - ENTER, TAB, etc...

Posted: Fri Mar 24, 2023 2:31 pm
by jpch
Hi,

Is there a way to input Enter for a new line or Tab in the Write a Text File Action?

I tried with {ENTER} and {TAB} but it writes the text and doesn't create the new line or a tabbed space.

Thank you

Re: Write Text File Action - ENTER, TAB, etc...

Posted: Fri Mar 24, 2023 3:23 pm
by Oleg
If you want to write end of line symbols to text file use {EOL}. This is sequence of two symbols {Chr(13)}{Chr(10)} (carriage return and line feed)
To put TAB symbol use {Chr(9)}
TAB symbol has ASCII code 9

Re: Write Text File Action - ENTER, TAB, etc...

Posted: Tue Mar 28, 2023 2:04 pm
by jpch
Thank you Oleg. It worked!