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 › How to print in Message_Area
Page Index Toggle Pages: 1
How to print in Message_Area ? (Read 314 times)
How to print in Message_Area ?
Mar 4th, 2008, 5:17am
 
How to print in Message_Area ?
(cause while my program is running, I want to display some status messages without messing the Text_Area)

Thanks.
Re: How to print in Message_Area ?
Reply #1 - Mar 4th, 2008, 6:32am
 
are you talking about the console?

If so, then it's println("Your message here"); or println(variableName);

Hope this helps,
TSG
Re: How to print in Message_Area ?
Reply #2 - Mar 4th, 2008, 7:13am
 
No,
I'm talking about the Message Area,
as indicated here:  http://processing.org/reference/environment/index.html
Re: How to print in Message_Area ?
Reply #3 - Mar 4th, 2008, 9:02am
 
You can't output anything in the message area.
In that same page, it is stated:

Quote:
The message area gives feedback while saving and exporting and also displays errors.


The easiest way of outputting data, is using println("text" or variable) which outputs in the console
Page Index Toggle Pages: 1