Re: How to inject javascript function to be used before finishing loading dom in JavaFX

2019-06-18 Thread Bruno Borges
Check the source code of my WebFX project. I hack the WebEngine dom object to add some functions before things are loaded. GitHub.com/brunoborges/webfx On Mon, Jun 17, 2019, 15:36 Joey Ruiz wrote: > I'm creating a javaFX browser integrated with a swing application. This > browser opens a

Re: Remove JavaFX JPMS enforcement

2020-04-20 Thread Bruno Borges
I do wonder why isn't JavaFX in a single module, like Swing? <https://docs.oracle.com/javase/10/docs/api/java.desktop-summary.html> For Java developers to build Swing apps, all they need is a "requires java.desktop". But for JavaFX, there are multiple modules. --- *Bruno Borges

Re: Remove JavaFX JPMS enforcement

2020-04-20 Thread Bruno Borges
One thing I do miss in openjfx.io website in terms of documentation is the definition of a jmods file and the sdk. For new developers looking at the download page, it's really not simple to figure it out. On Mon, Apr 20, 2020, 15:55 Kevin Rushforth wrote: > As of JDK 9, there are a few places