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.
IndexDiscussionGeneral Discussion,  Status › Beginner to processing
Page Index Toggle Pages: 1
Beginner to processing (Read 1947 times)
Beginner to processing
Apr 14th, 2009, 2:28pm
 
hi everyone,

i am new to processing and know NOTHING about it...in fact i am new to programming! how/where should I begin???

help!
Re: Beginner to processing
Reply #1 - Apr 14th, 2009, 9:06pm
 
This seems like a good bet:

http://processing.org/learning/gettingstarted/

and then play around, try things like

void draw(){
 if(mousePressed) line(pmouseX,pmouseY,mouseX,mouseY);
}

--Ben
Re: Beginner to processing
Reply #2 - Apr 15th, 2009, 11:18pm
 
thanks benhem
Re: Beginner to processing
Reply #3 - Apr 23rd, 2009, 7:24am
 
I'm also just starting out on processing, but I do already have some minimal programming experience.  The getting started guide is good, but kind of limited.  Are there any other places that have tutorials, instructions, help materials, etc.?  It does't really help to just study other people's code if you have no idea what commands are available and how the syntax should work....
Re: Beginner to processing
Reply #4 - Apr 23rd, 2009, 8:19am
 
scogle wrote on Apr 23rd, 2009, 7:24am:
if you have no idea what commands are available and how the syntax should work....

See Language reference for the list of commands.
Syntax: that's the Java syntax...
Re: Beginner to processing
Reply #5 - May 4th, 2009, 3:31am
 
Thanks for the post, I have the same predicament!
Page Index Toggle Pages: 1