package javaapplication10; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.VBox; import javafx.scene.web.HTMLEditor; import javafx.stage.Stage; public class HTMLEditor2 extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) throws Exception { HTMLEditor html = new HTMLEditor(); Scene scene = new Scene(new VBox(new Button("For focus"), html), 1000, 1000); stage.setScene(scene); stage.show(); } }