fullscreen osx using eclipse
in
Integration and Hardware
•
1 year ago
Hi: Im currently starting to develop new applications using the 2.0 core.
I'm using eclipse ide, mac osx 10.6.8, processing trunk source (up to date).
I found that PApplet has no implemented menubar hiding on this os.
line 9325.
I got japplemenubar library, compiled ok with included xcode project.
added Library to eclipse project and addeed to PApplet:
if (present) {
if (platform == MACOSX) {
// Call some native code to remove the menu bar on OS X. Not necessary
// on Linux and Windows, who are happy to make full screen windows.
System.out.println("Enter fullscreen MAC OSX");
JAppleMenuBar japplemenubar;
japplemenubar = new JAppleMenuBar();
japplemenubar.setVisible(false);
}
Now I have fullscreen no menu bar.
1