We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSyntax Questions › Mac OsX display app without top toolbar
Page Index Toggle Pages: 1
Mac OsX display app without top toolbar (Read 336 times)
Mac OsX display app without top toolbar
Oct 18th, 2006, 5:38pm
 
This may be answered somewhere here but I haven't found it.

I need to run an app on Mac osX Intel without the Finder toolbar displayed at the top of the screen

I already have this in the sketch setup

frame.setUndecorated(true);
frame.setLocation(0,0);
// this resizes to screen-size
size(screen.width,screen.height);

But this still leaves me with the Finder bar at the top

any suggestions?
Re: Mac OsX display app without top toolbar
Reply #1 - Oct 18th, 2006, 5:57pm
 
because of limitations of mac os x, you can only get full screen by using "present" mode.
Re: Mac OsX display app without top toolbar
Reply #2 - Oct 18th, 2006, 6:46pm
 
Is this an argument in a separate java class?

I couldn't find a reference to it.
Re: Mac OsX display app without top toolbar
Reply #3 - Oct 18th, 2006, 7:08pm
 
Ok
I've seen how it works!
thanks fry
Page Index Toggle Pages: 1