Any way to change Title in a Notify Window?

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

Chroma(Posted 2005) [#1]
Looking to change the Title in a Notify window. Also wondering how to make a regular window NOT show an Icon at all.


MattVonFat(Posted 2005) [#2]
The title in the notify windows are controlled by AppTitle so just change the AppTitle when you want a notify with a different name.


Chroma(Posted 2005) [#3]
Bling bling!

thx


Chroma(Posted 2005) [#4]
Ok now all i need is multiple lines in the Notify window.

Not able to do that atm.


Chroma(Posted 2005) [#5]
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!


Robert Cummings(Posted 2005) [#6]
Thought it was chr$(10) ?


fredborg(Posted 2005) [#7]
Notify "My Game Version 1.0~nCopyright My Game Company",0
Use escape sequences!


Chroma(Posted 2005) [#8]
bah...that in the docs?


Stuart Morgan(Posted 2005) [#9]
bah...that in the docs?

Yep, in the language reference under Literals.