The JavaFX platform enables developers to create and deploy RIA applications that behave consistently across multiple platforms and browsers. It is built on Java technology. "javafx" tag is mostly dedicated for JavaFX 1.3 and older releases, which used JavaFX script language. For newest JavaFX 2+ ...
0
votes
1answer
4 views
JavaFX - Play video as a background
I'm relatively new to JavaFX 2 and I was wondering if it is possible to have a video as an application background instead of a static image. Should I use a StackPane and put there the panes? If so, ...
0
votes
0answers
10 views
can't play mp3 file via javafx 2.2 media player
I'm developing what I thought should ahve been a simple task with javafx- media player that will play mp3 files stored on the local hard drive, in users default music folder path (using fedora). I can ...
2
votes
1answer
21 views
Independent JavaFX properties implementation?
Java FX properties is a nice API allowing the developer to create properties instead of using standard get/set method semantics. It also adds subscription to changes, properties expressions support ...
0
votes
1answer
10 views
Image saved in JavaFX as jpg is pink toned
I want to save an Image from my ImageView to files with different resolutions. Doing it as .png results as expected. As for .jpg - I get all files pink toned.
Where is the trick? Here is the code:
...
0
votes
0answers
7 views
running antlr inside a javafx and swing app
I have built a gui with javafx and swing and when I add an action listener to parse the expression in a textfield I get a error, I am not sure what the problem is.
the error is:
Exception in thread ...
-2
votes
0answers
21 views
How to load FXML dynamically from webserver?
I am trying to replace the JSP,HTML and JavaScript by JavaFX, so I kept the FXML files and business logic in webserver. I can load the FXML from server and display them in client side by simple ...
0
votes
0answers
10 views
How to auto-scroll to the end in WebView?
I've problem with Scrollbar in WebView. I want to when the web view loaded, the srollbar auto scroll to the end of web view.
How can I do it?
This is my sample
package sample;
import ...
0
votes
1answer
13 views
JavaFX affine transform from 2D transformation matrix
I'm getting started with JavaFX and am struggling with the way that transforms are handled. I understand that you can add various transforms to a node but I want to be able to accumulate the ...
0
votes
0answers
7 views
Pass javafx.linechart an array of numbers to plot.
I got this sample code from the Oracle documentation site, messed around a bit but with no luck.
I want use an array that I get from another class, this array contains numbers to populate the series ...
-1
votes
0answers
15 views
JavaFX - “Progress Window”
I would like to show a little "Progress Window", contained in a FXML while i put some big BLOBs in a Database.
The Problem is: The Window won't appear till the Insert is executed.
I thought maybe it ...
0
votes
0answers
5 views
getHeaderFields of HTTPSUrlConnection is not returning the all cookies set by multiple Set-Cookie field
All
We noticed some strange behavior in HTTPUrlConnection getHeaderFields when we have webview initialized in the application. when we have the java fx webview initialized, getHeaderFields API on ...
0
votes
1answer
11 views
How to add transition animation for switching JAVA FX FXML
1) How to add transition animation in javafx when switching between fxml files.
2) How to add css effects in buttons like hover effect and popular button effect.
I am working javafx project. I ...
1
vote
0answers
16 views
Where does Java preferences API store the values under Windows?
After saving some application preferences via java.util.prefs API, I cannot find them.
This is a Windows 7 machine and I searched registry for the path avaFXApp1 and individual values I've saved such ...
2
votes
1answer
25 views
What is the justification for JavaFX FXML schema not supporting context menu inside the panes?
It is possible to add a context menu to a scroll pane, but not to other types of panes. Why?
0
votes
0answers
23 views
Java library works in Swing and fails on Javafx
I am developing a JavaFx application and I need to use a third-party library.
I am using jdk1.7.0_40
The details:
The library loads fine, but it uses a event mechanism based on Abstract Methods.
The ...