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.
Page Index Toggle Pages: 1
Full screen huh? (Read 431 times)
Full screen huh?
Aug 9th, 2008, 11:16pm
 
I've tried following the information at processing.org and on the forum to get my sketch full screen, i've added this:

static public void main(String args[]) {
 PApplet.main(new String[] { "--present", "nameOfMySketch" });
}

void setup() {
 size(screen.width, screen.height, OPENGL);
}

What i get is a window the size of my screen but i can still see my dock and the menu bar at the top. Take a look at the screen shot: http://koamics.com/imagry/screen_shot.png

Am I missing something?
Thanks for your help.
Re: Full screen huh?
Reply #1 - Aug 9th, 2008, 11:33pm
 
To make your sketch run full screen, use Present instead of Run, beneath the Sketch menu. More of that sort of thing can be found at Help > Getting Started.

The code you have there is for running at full screen after the sketch is exported as an application.
Re: Full screen huh?
Reply #2 - Aug 9th, 2008, 11:50pm
 
Thanks for the fast reply Fry Smiley
Re: Full screen huh?
Reply #3 - Aug 15th, 2008, 12:38am
 
Hi there,
Is there away to hide the task bar at the top of the applet window when in run mode?
thanks
pilko
Page Index Toggle Pages: 1