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 › menu bar in application mode
Page Index Toggle Pages: 1
menu bar in application mode (Read 450 times)
menu bar in application mode
Nov 1st, 2006, 8:49pm
 

hey, can anybody advise on how to hide the menu bar of processing sketches working in application mode?

thanks

jeremy
Re: menu bar in application mode
Reply #1 - Nov 1st, 2006, 9:02pm
 
i think holding ctrl and shift when you hit play does it.
Re: menu bar in application mode
Reply #2 - Nov 1st, 2006, 10:36pm
 
this should work

Code:

void setup(){
size(200,200);
frame.setUndecorated(true);
}

void draw(){
if(frameCount%30==0)
background(random(255),random(255),random(255));
}
Page Index Toggle Pages: 1