Do you have any suggestions on how to get this to run? I can get the window to work, but not the controls.
//https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Button.html
import processing.javafx.*;
import javafx.scene.*;
import javafx.scene.control.*;
//import javafx.scene.control.Control;
//import javafx.scene.control.Labeled;
//import javafx.scene.control.ButtonBase;
//import javafx.scene.control.Button;
//import processing.javafx.scene.*;
//import processing.javafx.controls.*;
void setup(){
size(640, 480, FX2D);
background(209);
stroke(255);
Button button = new Button("Click Me");
}
void draw(){
}