Naming Window <IMPORTANT>

BlitzMax Forums/BlitzMax Programming/Naming Window <IMPORTANT>

Will(Posted 2005) [#1]
Im finishing up a game for a contest and its due in like 6 hours, I just realized I dont know how to rename the window in windowed mode! I am on Mac OS X and I cant search the forum because the search system is down, can anyone help me save my contest entry by showing me the code to do this?


klepto2(Posted 2005) [#2]
Apptitle = "MyWindow" in front of the Graphics command should do it. But I don't know exactly if it will work for Mac.


tonyg(Posted 2005) [#3]
'apptitle'...
AppTitle$="Hello World"
Graphics 640,480,0
WaitKey()

Works on Win32 so you'll need to check on Mac.


Will(Posted 2005) [#4]
Thanks very much, works!