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
0answers
8 views
javafx thread to update a listview
I'm trying to do a simple chat application on javafx
my actual problem is the thread to insert updates into a observablelist and set it on a listview
the code im using :
String ...
1
vote
0answers
7 views
JavaFX TableView Column Width\Contents auto-truncating
I'm trying to "smartly" abbreviate/truncate the String contents of a column nested in a TableView. I have tried using UNCONSTRAINED_RESIZE_POLICY but really prefer CONSTRAINED_RESIZE_POLICY since it ...
1
vote
1answer
21 views
JavaFX Update progressbar in tableview from Task
I know Task has a method updateProgress, I would need to bind progressbar to task, however I cannot do that, as I do not have progressbar as an object.
My program has a TableView. Once user enters ...
1
vote
0answers
19 views
java - set windows default fontsize programmatically
I have a JavaFX application, and on different computers (screen resolution) some pane or text field slip away from each other. I found it is due to the Windows default font size (small - 100%, medium ...
1
vote
1answer
25 views
How to change scene when in fullscreen in JavaFX and avoid “Press ESC to exit fullscreen” message
How is it possible to change scene of fullscreen window and avoid to show "Press ESC to exit fullscreen" message?
I'm building fullscreen desktop application (touchscreen kiosk) so I can show this ...
-2
votes
0answers
27 views
How can I add area over image in javafx?
I have an image for example:
How can add new area arbitrary shape over image? and change the color of the area in time. How add color area in any image and change smoothly color between areas?
...
0
votes
2answers
26 views
JavaFx Working with threads and GUI
I have a problem while working with JavaFx and Threads. Basically I have two options. Working with Tasks or Perform.runLater. As I understand Perform.runLater should be used for simple/short tasks, ...
1
vote
1answer
8 views
JavaFX 2.0 TabPane : Tabs at left and keep tab header horizontal
I'm trying to develop a GUI for a web application and I wanted to set a TabPane with tabs placed at left keeping the tab headers horizontal.
I already found how to place the tabs at left, but after ...
0
votes
0answers
22 views
JavaFX scaling adjusting position
After several questions I almost did what I wanted - here is one last step.(JavaFX correct scaling last question - this is related). As jewelsea recommended I added event to each point, but it didn't ...
1
vote
1answer
23 views
Can JavaFX Webview send a notification?
I'm pretty new to using JavaFX and Webview. What I want to do is when the address of the webengine (i assume this is accessed through webengine.getLocation()) changes to a specific web address to fire ...
1
vote
0answers
26 views
JavaFX bar chart zooming by rescaling
I'm developing a program that needs to zoom into a horizontal bar chart (ctrl+mousewheel), but not by magnifying it, but by rescaling it (just the width). The rescaling is done by changing the ...
1
vote
4answers
70 views
Swing vs JavaFx for desktop applications
I have a very big program that is currently using swt. The program can be run on both windows, mac and linux, and it is a big desktop application with many elements.
Now swt being somewhat old I would ...
1
vote
2answers
54 views
How i can use jfreeChart with Javafx2
For a JavaFX2 Application I have to show different types of Charts.I am using jfreeChart for Charts creation and code given below:
public static JFreeChart generatePieChart() {
...
1
vote
0answers
27 views
Caused by: java.lang.ClassCastException Wrapper cannot be cast to
I am trying to run Remote EJB running on a glassfish 3.1 container with a Javafax 2.2 client and I throw an exeption when I "lookup" the remote EJB.
The purpose of my Application is to get/put with ...
0
votes
1answer
22 views
File not getting copied from script
I have built the msi installer for my javafx application using the tutorial and it works well. But in my application I need to start some java process for which I need access to java.exe. And the ...
0
votes
0answers
11 views
JavaFx 8 Gives Error with Netbeans Dev Build
I downloaded the netbeans dev build and trying to setup my project with JavaFx with JDK 8
First of all the JavaFx tab is missing in the flatforms dialog in netbeans when I choose the JDK 8 folder. ...
2
votes
1answer
56 views
JavaFX correct scaling
I want to scale all nodes in a Pane on a scroll event.
What I have tried so far:
When I do scaleX or scaleY, border of pane
scales respectively (seen when set Pane style -fx-border-color: black;). ...
0
votes
0answers
4 views
javafx jscript runtime error
When running the sample java fx applications or making my own fx application in netbeans I get a message before the software runs that is titled Microsoft JScript runtime error. The message says ...
1
vote
0answers
70 views
JavaFX custom control (TextField) not working
I am trying to make a custom control with JavaFX and SceneBuilder 1.1.
I have this code:
FXML
<?import libreria.javaFX.componentes.componenteTextField.*?>
<AnchorPane id="AnchorPane" ...
2
votes
1answer
61 views
Include java.exe in the runtime built
To create a installer for my javafx application, I have followed tutorial . And it as expected makes the installer.
The directory structure it makes is this:
MyApp
+app
+runtime
...
0
votes
1answer
30 views
Copy the folder along with parent folder
I have a simple question, but I am unable to figure out a way to do it. I have a folder called EDSDK and it internally contains sub-folders. Now in my ant itself I wish to copy all those files.
i.e.
...
1
vote
1answer
24 views
Unable to setup JavaFx platform in Netbeans
I am using JDK 8 Early access (Build 90) with Netbeans 7.3 in windows but while enabling JavaFx in Java platform it says JavaFx platform is not correctly defined. I tried to give the jre8 path but ...
1
vote
1answer
38 views
Java FX 2 TreeView Model Reference
I am trying to fetch back the TreeItem's ValueProperty during an onMouseClick event. I have a tree view of following type,
@FXML
private TreeView<Pair<URIImpl,String>> myTreeview;
The ...
0
votes
0answers
25 views
css property “font-weight: bold” doesn't work in GWT application opened in javafx.scene.web.WebView
My application has two parts: one GWT based web application, second Java FX based standalone application. Web part opened in standalone application. To provide browser functionality I use ...
0
votes
1answer
17 views
Can't realize Navigation, Pages, scenes with MVC pattern in JavaFX
Navigation and pages aren't supported in JavaFx at my knowledge, I want to build an Application where the Views are different pages that have different Controllers, I want each page to be contained in ...
1
vote
1answer
19 views
javafx Anonymous Application class
I'm used to Swing and am exploring javafx. In swing I'd create a class that extends Jpanel and then be able to test that class with a couple of lines of code in that class that created a JFrame.
So ...
1
vote
2answers
47 views
How to call functions on the stage in JavaFX's controller file
I am using javafx along with fxml, so I use the controller for the real coding. I need to do a few operations on the stage, such as getting its x- or y-axis position. I have tried stage.getX() & ...
1
vote
1answer
29 views
Fxml file not updating in Eclipse
I'm experiencing a weird behaving in Eclipse when working with JavaFx, when I modify a FXML document in SceneBuilder, I save the changes, but when I run the project, my changes don't appear, it s ...
0
votes
2answers
21 views
How to get location of mouse in JavaFX?
I am a beginner in java(fx).
How do you get the mouse location in x and y in JavaFX? I tried using AWT's MouseInfo(also imported it), but it's not working. I also saw the code for it in Ensembles(that ...
3
votes
1answer
59 views
JavaFX: multiple snapshots in single image
I learned to use snapshot to make an Image object out of a node. Having multiple Groups that hold various strokes, I'm now trying to create a single Image with strokes from both groups. For this ...
0
votes
1answer
19 views
JavaFX ProgressBar Value Doest Work
ProgressBar pb = new ProgressBar(0.0);
pb.setProgress(1.0 - (1.0 / ((1.0 * 60) / 15000)));
I want progress bar show 60min state, but when left 15000min not really showing state.
Sory for my bad ...
0
votes
1answer
25 views
Is it possible to run JavaFx without X-server?
My plan is to run a JavaFx application on a Raspberry Pi. While the usual way is to start the GUI which is then redirected to the HDMI port, which presents the whole of desktop on the TV.
However, I ...
0
votes
1answer
30 views
Correct way to set the path of a BackgroundImage in JavaFX CSS
I have an AnchorPan and I want to style it by giving it a BackgroundImage I have on another package :
this is how I tried
#body
{
...
1
vote
2answers
27 views
Can't load FXML in Clojure using FXMLLoader
I'm trying to implement the basic JavaFX example shown here: http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm . I was able to get the basic stuff working (programmatically creating the ...
0
votes
1answer
35 views
javaFX intersection bug
I have a problem in my app. I draw lines and points with the help of mouse and I need to detect wether I intersect the line or get the point. And with points it works well, but with lines it doesn't ...
0
votes
0answers
18 views
JavaFx Controller initialization is not working in proper order
I am working on a Desktop application using JavaFX 2.2. I have an application class which loads the main fxml. In that main fxml i had a Border pane and in the center part, i had included a child ...
0
votes
0answers
29 views
UnmanagedJars in sbt plugin
I am creating a sbt plugin. One of its features is to display a dependency graph of a given scala project (the one invoking this plugin). To do so, I use scalafx, which is still depending on a javafx ...
1
vote
0answers
21 views
find HTMLEditor cursor pointer for inserting image
as said in topic: JavaFX HTMLEditor - Insert image function
if want to insert image should add below tag to htmlText of htmlEditor
"<img src=\"" + getClass().getResource(PicName[i])) + "\" ...
1
vote
0answers
29 views
Get the index of selected text using JavaFX WebView
I am trying to get the index of selected text from webview using javafx according to html file.
My query is that suppose index of stackoverflow in a html file is 200 then if i select stackoverflow ...
1
vote
1answer
27 views
Place button on top of webView in GridPane
I want to create a refresh button for my webView that will be on top of the view (even if it hides part of the view), when I place the button on the Grid Pane it pushes the webView down or to the side ...
0
votes
1answer
30 views
How do i print something on focusOut on TextField in javafx2
I have a TextField and want to perform some action on textfiels focus out
TextField textField = new TextField();
how do i print
System.ou.prinln("Focus Out");
When focus out from textfield.
1
vote
0answers
43 views
How to minimize, maximize and restore down through buttons in java?
I'm creating a JavaFX 2.2 program, and need to create custom UI controls (just those ever-present minimize-maximize/restore-close buttons on the top). I need to create custom buttons for that purpose, ...
2
votes
1answer
31 views
Highlight the selected text using Javafx WebView
Is it possible to highlight the selected text in WebView using javafx 2.0 ?
I want to make a program which can format the selected text in html file openeing in JavaFX2.0 WebView.
I found ...
3
votes
0answers
70 views
Application memory issue with mac
I face a problem with java application I built in javaFx. It consumes only 2-3% of cpu usage and around 50 to 80 MB of memory in windows. But in mac same application initially starts with 50 mb of ...
0
votes
1answer
32 views
View html from archive using WebView
I have zip-compressed file, which contains a set of html pages. I need to load html-pages from it. I need to redefine the mechanism of resolve of links. It is possible using WebView javafx?
2
votes
0answers
21 views
Can't open Javafx window until I open Javafx viewpart
I am using e(fx)clipse in an eclipse plugin. I'd like to have all my viewparts in SWT, but popup a fullscreen video in Javafx. When I do this I get a
"java.lang.IllegalStateException: Toolkit not ...
0
votes
0answers
13 views
Relayouting controls in JavaFx
I am trying to create a simple announcement system in JavaFx. I've created a custom control which has 2 labels and one text area for an anounce then I've created an array of this custom control on a ...
1
vote
1answer
32 views
Top-left and -right corner rounded in Javafx/CSS
I would like to create a Pane with 2 rounded corners top-left and top-right, how can i do this in javafx?
I know that u can use "border-top-left-radius" in normal css but it wont work under javafx.
...
0
votes
0answers
32 views
Notify java program when youtube movie ended from html5 code
I am working on a project that shows Youtube movies on a JavaFX WebView. Because I need to have control over the video, I have chosen to embed the youtube video's ID inside html5 code.
I will show 2 ...
0
votes
1answer
33 views
Can't run javafx JAR outside Netbeans
I have a problem here with my javafx application jar, generated by Netbeans.
Actually everything is running pretty well IF I am running inside Netbeans. However when I use the command line and try to ...



