Question

I am developing a code in processing language and to make it a web application I am using processing.js.

I was wondering if there is any intellisense for processing ide or if there is an IDE for processing which has intellisense.

Was it helpful?

Solution

If you want an Eclipse-style outline you could try the Sketch-Outline tool for Processing 2.0: http://code.google.com/p/sketch-outline/

I have not tested this myself, but the screenshot posted here looks promising: https://forum.processing.org/topic/sketch-outline-new-processing-tool-announcement

Personally I use Eclipse as a full-fledged IDE, giving you auto-complete, class outline etc. The only downside is that you have to lose some of the code fudging done by the Processing pre-compiler, i.e. "color" does not exist as a variable type (it's really an int) and float numbers need to be suffixed with "f" - "2.0" in Java is a double, "2.0f" is a float.

OTHER TIPS

IntelliSense is just Microsoft's implementation of autocomplete.

I'm guessing that you're looking for a Processing IDE (not a Processing.JS IDE) with autocomplete.

Here is one recommendation: http://wiki.processing.org/w/JEdit_as_External_IDE

If you're looking for a Processing.js IDE, there are two listed here:

http://processingjs.org/

They are:

http://sketchpad.cc/

http://processingjs.org/tools/processing-helper.html

In addition, you can use Eclipse with the Proclipsing plugin which is cross platform and easy to setup.

I presume you can get auto complete with any other Java IDE like NetBeans or IntelliJ Idea, it's a matter of linking Processing's core.jar and subclassing PApplet.

On the Mac, Sublime Text (commercial) offers partial autocompletion for .pde processing sketches.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top