Hi,
I just tested the javafx htmleditor, but it is limitid in it’s functionality. ( no image, url, … )
Is there a way to use tinyMce within a javaFX webView ?
if (elements.myfxpanel.isJavaFXAvailable()) {
var jsRunnable = {
run: function () {
var htmlEditor = new Packages.javafx.scene.web.HTMLEditor();
var scene = new Packages.javafx.scene.Scene(htmlEditor);
elements.myfxpanel.setScene(scene);
}
}
var runnable = new Packages.java.lang.Runnable(jsRunnable);
Packages.com.sun.javafx.application.PlatformImpl.runLater(runnable);
}