FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Bugs
   Bug Fixes, Implemented Suggestions
(Moderator: fry)
   clearing the text window in the environment
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: clearing the text window in the environment  (Read 643 times)
eternaluxe


clearing the text window in the environment
« on: Oct 9th, 2003, 7:30pm »

how do i do it?  It seems to keep old errors there and I can't tell if my updated sketch is running without bugs.  Am I missing something?  I'm running mac osx 10.2.6
 
toxi

WWW
Re: clearing the text window in the environment
« Reply #1 on: Oct 9th, 2003, 7:43pm »

hi, this is kind of the wrong part of the forum here, but the console output will be cleared only when you restart the environment. you can tell if your sketch is running without bugs though, because if there're any (fatal ones) it won't run at all...
 

http://toxi.co.uk/
fry


WWW
Re: clearing the text window in the environment
« Reply #2 on: Oct 14th, 2003, 10:11pm »

yeah, i've noticed this to be frustrating. it's already on the todo list but it's been a low priority. but it's coming...
 
benelek

35160983516098 WWW Email
Re: clearing the text window in the environment
« Reply #3 on: Oct 16th, 2003, 10:01am »

you could always put a line of code at the begining of the setup() section of your sketch to indicate to yourself that whatever follows is new:
 
Code:

void setup() {
  println("-- new run " + random(1) + " --");
  //size(), bla, bla...
}
 
fry


WWW
Re: clearing the text window in the environment
« Reply #4 on: Oct 20th, 2003, 1:40am »

rev 66 spews a handful of blank lines when you hit run. i'm not nuts about this solution since it draws attention to itself (i.e. if it starts spewing to the console) even though nothing has happened. i can't think of any good "--- new run ---" text that wouldn't be too techy or too much of an eyesore.
 
benelek

35160983516098 WWW Email
Re: clearing the text window in the environment
« Reply #5 on: Oct 20th, 2003, 7:04am »

what about "--new run <time stamp> --"  
 
this would match the History listing type.
 
Pages: 1 

« Previous topic | Next topic »