AppTitle?

Monkey Forums/Monkey Programming/AppTitle?

therevills(Posted 2011) [#1]
I can see that mojo has a method AppTitle and a function, but when I create a GLFW exe, the app title is still "GLFW Window".

Im doing it this way:
Class MyApp Extends App

	Method AppTitle$()
		Return "TEST"
	End Method


Is this right?


Xaron(Posted 2011) [#2]
Hmm... the glfw native code shows me:

return "<TODO>";


for that function.

Plus it is a function so overloading with a method probably won't work. I assume you have to use a global function but this won't work either yet.


MikeHart(Posted 2011) [#3]
Was stumbling over that too. I think it is still WIP.


matt(Posted 2011) [#4]
Here are a couple of workarounds...

iOS (multiple apps each with different names - woop!)
http://www.monkeycoder.co.nz/Community/posts.php?topic=397

Andoid (only one app on a phone at once, but you can change it's name - boo!)
http://www.monkeycoder.co.nz/Community/posts.php?topic=358