AppTitle = "Test"

BlitzMax Forums/MaxGUI Module/AppTitle = "Test"

Neochrome(Posted 2012) [#1]
This no longer works? was working in 1.33, but now seems broken in 1.48


Scaremonger(Posted 2012) [#2]
You need to put the instruction before you call graphics, for example:

This fails
graphics 300,300
apptitle="test"
This works
apptitle="test"
graphics 300,300



Neochrome(Posted 2012) [#3]
WOW! i didn't even think of that!!

Thanks!!

Looks like i have to go back to thinking Blitz and Not C++! lol