Menu Bars vs. Full-Screen Mode

I am running OSX, but the main menu-bar stays in its place, even after setting the fullscreen flag in the screen.xml file. How do I get rid of the menu bar?

The main menu bar can be disabled editing the Info.plist-file, that is inside the application bundle. You need to add the following XML code into the Info.plist:

<key>LSUIPresentationMode</key>
<integer>4</integer>

The Info.plist location is of type xyz.app/Contents/Info.plist, where xyz is the name of the application.

For more information, see articles in Max OS X Hints and Apple Developer Site.

This change is included automatically in the compilations of CornerStone releases for Mac, starting from 3.6.2009.