Esc-sequences usage in command line
Posted: Tue Mar 08, 2016 1:22 am
I have tried the following commands (in "Start -> Run") to show a MessageBox with 2 lines of text, but the "\n" esc-sequence is not working (it works ok when used in a script):
The following do not work either:
Is it possible to use Esc-sequences in the command line?
Code: Select all
akelpad /show(0) /if(`AkelPad.MessageBox(0, "Line 1\nLine 2", "Caption", 64)`, ``, ``) /quit
akelpad /show(0) /if(`AkelPad.MessageBox(0, "Line 1\\nLine 2", "Caption", 64)`, ``, ``) /quitCode: Select all
akelpad /show(0) /if(`1`, `/Call("Scripts::Main", 7, 'AkelPad.MessageBox(0, "Line 1\nLine 2", "Caption", 64)')`, ``) /quit
akelpad /show(0) /if(`1`, `/Call("Scripts::Main", 7, 'AkelPad.MessageBox(0, "Line 1\\nLine 2", "Caption", 64)')`, ``) /quit