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_
   Programming Questions & Help
   Syntax
(Moderators: fry, REAS)
   decipher error messages
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: decipher error messages  (Read 639 times)
sourma


decipher error messages
« on: Feb 1st, 2004, 10:01pm »

Hi all where can I find a reference for error msg?  
I get "expecting IDENT, found ')'  
for this piece of code
 
BFont Futura = loadFont("Futura-Bold.vlw.gz");
textFont (Futura);
text("word", 15, 50);
thank you
 
kevinP

Email
Re: decipher error messages
« Reply #1 on: Feb 1st, 2004, 10:13pm »

I can't answer your question, but this worked fine for me:
Code:

BFont Utopia = loadFont("Utopia.vlw");  
textFont(Utopia);  
text("word", 15, 50);  

 
Are you sure that is the code? (Also variable names are usually written lowercase though that shouldn't make a difference).
 
-K
« Last Edit: Feb 1st, 2004, 10:14pm by kevinP »  

Kevin Pfeiffer
Pages: 1 

« Previous topic | Next topic »