ivanomonti Expert Licensed User Longtime User Oct 1, 2025 #1 I'm making a music creator through AI with the help of php and html but I have a problem here, html that reads the files on chrome works fine on webview I can't find the solution... but does a more updated and functional webview exist in b4j? CROME B4J
I'm making a music creator through AI with the help of php and html but I have a problem here, html that reads the files on chrome works fine on webview I can't find the solution... but does a more updated and functional webview exist in b4j? CROME B4J
DonManfred Expert Licensed User Longtime User Oct 1, 2025 #2 ivanomonti said: but does a more updated and functional webview exist in b4j? Click to expand... Not that i know of. Upvote 0
ivanomonti said: but does a more updated and functional webview exist in b4j? Click to expand... Not that i know of.
William Lancee Well-Known Member Licensed User Longtime User Oct 1, 2025 #3 Note that with B4J you can invoke the chrome browser inside your program with: B4X: Private fx As JFX fx.ShowExternalDocument(File.GetUri("myDir", "something.html")) That may or may not be useful to you. Upvote 0
Note that with B4J you can invoke the chrome browser inside your program with: B4X: Private fx As JFX fx.ShowExternalDocument(File.GetUri("myDir", "something.html")) That may or may not be useful to you.
Erel B4X founder Staff member Licensed User Longtime User Friday at 7:31 AM #4 WebView is part of JavaFX. Make sure to use OpenJDK 19 (or newer). Upvote 0
xulihang Well-Known Member Licensed User Longtime User Monday at 1:35 PM #5 JavaFX's WebView is very limited. There are projects like https://teamdev.com/jxbrowser/ and https://github.com/chromiumembedded/java-cef to embed chromium in Java. Upvote 0
JavaFX's WebView is very limited. There are projects like https://teamdev.com/jxbrowser/ and https://github.com/chromiumembedded/java-cef to embed chromium in Java.