Notify line break

BlitzMax Forums/BlitzMax Programming/Notify line break

Is there a way to force a carriage return in the Notify dialog to break a long text string up into two or more lines?

Text:String = "This is a very~nlong text~nfor just one line~nin a notify box!"

Notify(Text)


~n = new line

I think you should use ~r instead of ~n

Well, both seem to work and that's okay with me. Thanks guys!