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.
Page Index Toggle Pages: 1
launch editor from terminal? (Read 1460 times)
launch editor from terminal?
Nov 27th, 2007, 12:11am
 
On windows (or any platform), what is the correct java -jar incantation to launch the processing development environment?

From glancing at the source, maybe processing.app.base is the right main() class?

If it is, what is the rest of the -jar -Xmx, etc. that the windows .exe takes care of for me?
Re: launch editor from terminal?
Reply #1 - Nov 27th, 2007, 1:02am
 
A quick look at an old version of processing (which comes with a nice .bat file)

Code:
set CLASSPATH=java\lib\rt.jar;lib;lib\build;lib\pde.jar;lib\core.jar;lib\antlr.jar;lib\oro.jar;lib\registry.jar;lib\mrj.jar;%windir%\system32\qtjava.zip;%windir%\system\qtjava.zip
java -ms128m -mx128m processing.app.Base
Page Index Toggle Pages: 1