hi
is there away to call one window from other window ?
void setup() {
String[] args = {"TwoFrameTest"};
SecondApplet sa = new SecondApplet();
PApplet.runSketch(args, sa);
}
void settings() {
size(300, 100);
}
void draw() {
background(0);
fill(255);
text("Hello world!", 50, 40);
}
public class SecondApplet extends PApplet {
public void settings() {
size(200, 200);
}
public void draw() {
background(255);
fill(0);
text("Hello world!", 50, 40);
}
}