We are about to switch to a new forum software. Until then we have removed the registration on this forum.
How do I make a second window in processing and edit it's size as well?
import javax.swing.*; SecondApplet s; void setup() { size(640, 480); PFrame f = new PFrame(width, height); frame.setTitle("first window"); f.setTitle("second window"); fill(0); } void draw() { background(255); ellipse(mouseX, mouseY, 10, 10); s.setGhostCursor(mouseX, mouseY); } public class PFrame extends JFrame { public PFrame(int width, int height) { setBounds(100, 100, width, height); s = new SecondApplet(); add(s); s.init(); show(); } } public class SecondApplet extends PApplet { int ghostX, ghostY; public void setup() { background(0); noStroke(); } public void draw() { background(50); fill(255); ellipse(mouseX, mouseY, 10, 10); fill(0); ellipse(ghostX, ghostY, 10, 10); } public void setGhostCursor(int ghostX, int ghostY) { this.ghostX = ghostX; this.ghostY = ghostY; } }
http://forum.processing.org/two/discussion/11304/multiple-monitors-primary-reagable-secondary-fullscreen
Answers
http://forum.processing.org/two/discussion/11304/multiple-monitors-primary-reagable-secondary-fullscreen