MacOS X Menu

Archives Forums/MacOS X Discussion/MacOS X Menu

MacSven(Posted 2008) [#1]
How can i hide the MacOS X menu from the finder to setup a full window with now menus.


ImaginaryHuman(Posted 2008) [#2]
Not sure that you can, probably need to make an os api call of some kind.


Brucey(Posted 2008) [#3]
Yep. wxWidgets lets you create a full-screen window with no menu. So I guess, as the pretend guy says, there's an API call somewhere to do it :-)


MacSven(Posted 2008) [#4]
I have found something like this:

http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/PListKeys.html

Search for LSUIPresentationmode. It is only a entry in the info.plist in the application bundle.

Open then info.plist of you application with an texteditor and simple insert this:

<key>LSUIPresentationMode</key>
<integer>Value from 0 to 4</integer>

and you can build GUI Application in full screenmode.
@ Mark Sibly

Is it possible to add a Blitzmax menu for this one. So it can be automatical set in the info.plist!