MacOS X Menu
Archives Forums/MacOS X Discussion/MacOS X Menu
| ||
How can i hide the MacOS X menu from the finder to setup a full window with now menus. |
| ||
Not sure that you can, probably need to make an os api call of some kind. |
| ||
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 :-) |
| ||
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! |