Skip to content
⌘ NSIS Forum Archive

Break in Messagebox

3 posts

evilO#
Hi !

Err, not sure what you mean by "make breaks in a MessageBox"... 😕
If do you mean "newlines", it can be achieved like this:

$\r
Use to represent a carriage return (\r).

$\n
Use to represent a newline (\n).

$\t
Use to represent a tab (\t).

Quoted from the NSIS doc, you can check:


and for MessageBoxes:



evilO/Olive
Brummelchen#
$\r
Use to represent a carriage return (\r).

$\n
Use to represent a newline (\n).

Differences? i used to insert $\n at least
$\n$\r is used in textfiles afair