Any way to change Title in a Notify Window?

BlitzMax Forums/BlitzMax Programming/Any way to change Title in a Notify Window?

Looking to change the Title in a Notify window. Also wondering how to make a regular window NOT show an Icon at all.

The title in the notify windows are controlled by AppTitle so just change the AppTitle when you want a notify with a different name.

Bling bling!

thx

Ok now all i need is multiple lines in the Notify window.

Not able to do that atm.

Ok I solved this one. Chr$(13) is a line feed and will do the trick nicely.

Good info for everyone. Here's how to do multiple lines on a Notify window:

AppTitle= "About My Game"
Local LF:String = Chr$(13)

Notify "My Game Version 1.0"+LF+LF"Copyright My Game Company",0


Ta da!

Thought it was chr$(10) ?

Notify "My Game Version 1.0~nCopyright My Game Company",0
Use escape sequences!

bah...that in the docs?

bah...that in the docs?

Yep, in the language reference under Literals.