I am new to processing and I use a Mac. How do I save a snapshot of the OUTPUT to the following code? Ctrl+Shift+S does not work. Thank you.
void setup() { size(480, 120); } void draw() { if (mousePressed) { fill(0); } else { fill(255); } ellipse(mouseX, mouseY, 80, 80); }
1