Processing.py-Bugs icon indicating copy to clipboard operation
Processing.py-Bugs copied to clipboard

A home for all bugs and feature requests about Python Mode for the Processing Development Environment.

Results 106 Processing.py-Bugs issues
Sort by recently updated
recently updated
newest added
trafficstars

I'll try to investigate if this is caused by an unusual location of the Processing/sketchbook folder, but the Java mode video capture example worked fine... (Also working on Python mode...

Recurring issue in Python mode (processing 3.5.4). If I add cursor(HAND) to my sketch, regardless of which definition I place it under (either setup() or draw(), even in settings() ),...

A student sent me the attached screenshot about a "nasty error while trying to use Python mode" the other day. His instance of Processing, including Python mode, worked so far....

When I export to a 64-bit exe and check embed java, I get two folders. The 32 bit folder has an exe in it, but the 64 bit does not....

As I am using processing.py to teach an introductory course to computer science I'd be interested to have an input function: ```python def input(message=''): from javax.swing import JOptionPane return JOptionPane.showInputDialog(frame,...

Problem running a Firmata serial comms with an Arduino on Python Mode on Linux. The equivalent works on Java mode on Linux, and works OK on MacOS + Python mode...

```python3 def setup(): size(400,400) def draw(): circle(56, 46, 55) ``` > NameError: global name 'circle' is not defined ```python3 def setup(): size(400,400) def draw(): square(10, 10, 55) ``` > NameError:...

I am trying to change the size of the tabs in my editor, but it does not seem to register settings properly. I want '\t' to resolve to 2 spaces...

In the preferences, there is an option: "Run sketches on display", but this setting has no effect. Sketches show on the primary display, even if the IDE is on the...

I know this is very low priority, but I guess it is a good idea to document it here. I looks like a different (older) System GUI API is called....