Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

status()

   
Examples  
// Move mouse left and right and see the text 
// change in the lower-left corner of your browser 
void loop() { 
  if(mouseX < 50) { 
    status("left"); 
  } else { 
    status("right"); 
  } 
} 
Description   Displays message in the browser's status area. This is the text area in the lower left corner of the browser. The status() function will only work when the Processing program is running in a web browser.
   
Syntax  
status(text)
   
Parameters  
text   String: any valid String

   
Returns   None
   
Usage   Web
   
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas