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 & HelpPrograms › How to create processing borderless windows
Page Index Toggle Pages: 1
How to create processing borderless windows (Read 597 times)
How to create processing borderless windows
Feb 28th, 2009, 2:15am
 
I am pretty new to processing, but I am quite pleased with the limitless potential the software has. I have always been looking for a program which I can manipulate 2D images as 3D.

Is there any code to make the window borderless in processing ?
Re: How to create processing borderless windows
Reply #1 - Feb 28th, 2009, 3:00am
 
void setup()
{
 frame.removeNotify();
 frame.setUndecorated(true);
 frame.addNotify();      
 size(200,200);
}
Re: How to create processing borderless windows
Reply #2 - Feb 28th, 2009, 6:12am
 
seltar,

could you please add this to hacks?

casey
Re: How to create processing borderless windows
Reply #3 - Feb 28th, 2009, 8:57am
 
REAS wrote on Feb 28th, 2009, 6:12am:
could you please add this to hacks

Good idea, as it comes up regularly.
But I see it is already there: Undecorated frame.
Page Index Toggle Pages: 1