Notify line break

BlitzMax Forums/BlitzMax Programming/Notify line break

Tachyon(Posted 2007) [#1]
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?


klepto2(Posted 2007) [#2]
Text:String = "This is a very~nlong text~nfor just one line~nin a notify box!"

Notify(Text)


~n = new line


ziggy(Posted 2007) [#3]
I think you should use ~r instead of ~n


Tachyon(Posted 2007) [#4]
Well, both seem to work and that's okay with me. Thanks guys!