javafx-webengine Questions
1
How to debug a JavaFX webview?
I find two ways,
one is to attach external chrome debugger to JavaFX webview.
Another is to inject firebug javascript.
Method#1 seems to use a bit of hacks like set...
Arlberg asked 26/5, 2022 at 5:32
2
I have an application made with JavaFX 16 which contains a WebView used to show an interactive map using the Leaflet JS library.
I have a problem when I try to transition to JavaFX 17, the interact...
Overtly asked 7/11, 2021 at 12:36
3
I want to create a SnapShot/Screenshot/Image from a WebView in JavaFX(8).This WebView does not need to be visible (in my case).
My question:
Is it possible (in any way), to create a Screenshot/Imag...
Tumescent asked 8/5, 2015 at 10:8
3
Solved
How to call the launch() more than once in java i am given an exception as "ERROR IN MAIN:java.lang.IllegalStateException: Application launch must not be called more than once"
I have create rest ...
Conventionality asked 20/6, 2014 at 4:33
1
Solved
I have a JavaFX application where I am loading the HTML page. The HTML generates a Base64 which is being written to a file once it is loaded using JavaScript bridge. I am trying to get this Base64 ...
Bequeath asked 20/4, 2020 at 11:5
1
Solved
This is how I load my page and I would like to modify it while it's in the browser
WebView browser = new WebView();
WebEngine engine = browser.getEngine();
String cwd = System.getProperty("use...
Cinda asked 24/10, 2018 at 2:1
3
I'm using both JavaFX and the javascript engine inside JavaFX WebEngine to develop an application. I'd like to get feedback from javascript for debugging purposes. What happens to the console outpu...
Prisoner asked 24/2, 2015 at 3:26
2
I am working on a JavaFX application which contains few html,css,JS files which are rendered by the internal webkit browser. Now, the problem is the CSS animations which we have are not getting ren...
Johannejohannes asked 20/5, 2016 at 7:15
3
What I'm trying to implement is essentially the cancel button of a browser but using JavaFX's webview. This is the code I have so far:
Worker<Void> loadWorker = webView.getEngine().getLoadWo...
Remembrance asked 27/9, 2017 at 17:47
2
I'm developing a JavaFX application and I'm trying to use WebView to access a web application. This web application has Basic Authentication and I want to submit the credentials programatically (do...
Workroom asked 23/11, 2015 at 19:35
3
I have been trying to display a marker on the map when I click on a Button of my JavaFX application. So what happens is when I click on that button, I write the position in a JSON file, this file w...
Rothmuller asked 23/5, 2017 at 9:8
1
I have added the javafx library in my intellij plugin for adding the jfxwebview.
But when I am trying to create JFXPanel object as
JFXPanle jfxpanel = new JFXPanel();
It is giving the following...
Workbook asked 15/11, 2016 at 9:45
1
Solved
My problem is when I am restoring minimized javafx application from windows taskbar WebView become disabled.
After resize stage it becomes enabled.
Main java Code:
public class Main extends A...
Makowski asked 27/12, 2016 at 5:16
2
While using the WebEngine in JavaFX2, I've noticed it sometimes just gets stuck. Assume I were making a crawler that simply finds hyperlinks on a page and then visits them to do the same recursivel...
Biscuit asked 10/10, 2013 at 14:35
1
I am trying to develop a javafx webview browser. I have a website
developed in PHP that I need to display through the javafx web
browser. Popups browser window is generated using javascript win...
Conch asked 12/8, 2016 at 8:49
1
Solved
I am building a java program that has the option to play YouTube videos in an embedded player.
The problem is that most of the music videos won't play and I get the following error:
"This video co...
Faustina asked 28/4, 2016 at 14:20
0
I'm not very sure how to word this question but I'll try. My application runs commands against a website with a click of a button. The issue is during each loop the getLoadWorker increases by 1. In...
Tanguay asked 8/12, 2015 at 22:18
1
Solved
I have a JavaFX WebView which I want to have as big as the scene on start. If I could make it resize with the scene, this would be perfect.
But right now I focus just on the initial size.
@Overrid...
Mymya asked 20/11, 2015 at 9:52
3
Solved
We are trying to create a desktop application which opens url with html5 canvas. We implemented it using Java 8 JavaFX. But we experiencing bad response in rendering of sketches.
This working fine ...
Examinant asked 25/8, 2015 at 9:36
1
How to pass the HTTP Headers like
"Accept-Language", "Accept", "Accept-Encoding" to WebEngine in JavaFX? i have tried the method as specified in Setting a cookie using JavaFX's WebEngine/WebV...
Herbst asked 8/9, 2014 at 10:34
1
I am attempting to make a simple editor in JavaFX 2.2. I downloaded Ace Editor repository and created a test page which works fine when double clicked.
However, it does not work when I try to emb...
Corotto asked 27/10, 2013 at 14:25
1
I have an Url that will work only under chrome browser. I opened an url in webview but it doesn't work in it. I got the following error. So I would like to open it in chrome browser. Is it po...
Fillmore asked 13/6, 2014 at 9:43
1
© 2022 - 2024 — McMap. All rights reserved.