Processing.py-Bugs
Processing.py-Bugs copied to clipboard
A home for all bugs and feature requests about Python Mode for the Processing Development Environment.
When calling selectInput/selectOutput/selectFolder, when detecting key presses in draw(), the sketch thinks that keys are still being pressed even though they are no longer pressed I've put together a small...
With a regular processing sketch, one can launch from the command line using something like: processing-java --sketch=Conway --output=/tmp/Conway --run This doesn't work when the sketch was created in python mode....
Hi ! With the file "villes.csv" copied in the folder **data** the following code doesn't work The error message is : **processing.app.SketchException: IOError: (2, 'No such file or directory', 'villes.csv')**...
I am trying to make a clock in processing with python. The problem I am facing is that my program only runs when it is minimized. Here it is: #defining...
```python import random, time class Cell: def __init__(self, x, y): self.x, self.y = x, y self.identity = None self.right, self.bottom, self.visited, self.current, self.start = True, True, False, False, False def...
So im using processing with python and im following the website references and examples for OOP, im typing the same example as the website into processing and it is giving...
I'm new to programing. I wrote a program and I'm getting the error "NameError: global name 'taman' is not defined" even though I have already defined taman. Here's the code:...
I recently updated to Processing 3.3.1 and Python Mode Build 3022. And when I try `frame.setTitle(string)` I now get the Error Message: AttributeError: 'NoneType' object has no attribute 'setTitle' In...
Firmata/Arduino/Serial was working fine on Processing Python Mode, but now it throws an `UnsatisfiedLinkError`error on Windows only. Tried on Python Mode Build 3040. Works fine on macOS.  ``` add_library('serial')...
Python mode was added to Processing 3.2.3, but codes cannot be run. Error is as below. Who can help? I'm a fresh hand. processing.app.SketchException: Exception creating connection to: 127.0.0.1; nested...