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
2 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
14 views
Scenebuilder not showing controller fields
There's a weird behaving I'm noticing in SceneBuilder, I successfully attach the scene to the wanted Controller as shown here :
but sometimes it can't detect the fields annotated with @FXML ...
0
votes
0answers
15 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
0answers
16 views
new PropertyValueFactory<, >() for a collection
My problem is that I want to use a collection type with new PropertyValueFactory<,>()
TableColumn columnname = new TableColumn("Nom");
columnname.setCellValueFactory(new ...
0
votes
1answer
12 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
14 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 ...
0
votes
2answers
21 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
24 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
1answer
14 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
48 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
12 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
24 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
25 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
18 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
31 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
14 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
24 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
17 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
24 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
23 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
27 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
34 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
26 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
64 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
28 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
20 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
11 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
28 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
25 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
29 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 ...
0
votes
0answers
18 views
UnsatisfiedLinkError with javafx
I am trying do learn javafx. I have a very simple program to print "Hello World" once in the main method (as a test) and once in the Application. The code looks like this:
import javafx.stage.*;
...
1
vote
0answers
17 views
JSoup randomly throws java.io.IOException: stream is closed when running from browser
I'm having some weird JSoup problem when running my JavaFX application from the browser (or as web-start).
When I run from inside the IDE (Eclipse or Netbeans) or as a standalone app, it runs ...
2
votes
1answer
26 views
how perform task on javafx textfield at onfocus and outfocus
i am working on javafx 2 project. i need to perform some task on javafx textfield.
for example onFocus textfield want to print
System.out.println("Textfield on focus");
and when outFocus it print
...
-1
votes
0answers
66 views
Javafx for Android [closed]
Ive just read an article about Javafx for android does anyone know if this is possible yet?
I know that at the Java convention Oracle showed Javafx for android however not untill recently have ...
2
votes
1answer
23 views
How to load FXML from string in JavaFX
I am new to JavaFX, and I tried search solution for this problem in stackoverflow and google, but could not find a solution.
Sorry, if this is a reporst.
Here is my question. I am trying to load ...
1
vote
3answers
55 views
Getting JavaFX to run via Browser for Simple HelloWorld app
I tried following various tutorials for getting a JavaFX hello world app running in a browser. I can't believe it's that hard, so I'm looking for any insight into what I may have done wrong. Some ...
0
votes
0answers
9 views
Javafx PieChart nameProperty binding
i have a pieChart where i want to bind the name to a string
PieChart.Data data = new PieChart.Data(null, i);
data.nameProperty().bind(datalist.get("Callback").get(i).getPeriod());
...
0
votes
0answers
14 views
Javafx chart data binding
Say i have an x number of the same type of object, for the sake of example lets call it Dataobject
a DataObject could look like this:
public class DataObject {
private StringProperty period ...
1
vote
0answers
20 views
Get default Microphone for settings
I am not able to detect default microphone volume settings on Windows without using jni. I tried several ways but it does not work as expected
public static float getVolume() {
float volume ...
1
vote
1answer
36 views
how to use javafx textfield maxlength
how use this code in my main class of javafx.
so that i can set maxlength of characters in javafx texfield.
class LimitedTextField extends TextField {
private final int limit;
public ...
0
votes
0answers
28 views
JavaFX ListView Row Coloring
I have a LisView with a Cell Factory set. The cell factory changes the text color based on some flags for each row (black, red, green, blue, etc.)
When I select a row I want to change the color of ...
1
vote
0answers
17 views
How to make javafx.scene.Scene resize while maintaining an aspect ratio?
I'm writing an application with JavaFX 2.2.7-b01.
Here is an example of the code I currently have. How can I allow the application window to be resized but maintain the aspect ratio it is initially ...
0
votes
2answers
42 views
JavaFX project play youtube videos
I work on an automatically music player. To be short, i use the Last.fm api to get a lot of tracks names and tags. Using these tags and some intelligence computing algorithms, once you play a track, ...
0
votes
1answer
28 views
Porting a Netbeans JavaFx project to Eclipse
I'm working on a JavaFx project on NetBeans 7.3 my question is : Is it possible to port a Netbeans JavaFx project to eclipse (juno preferably) successfully, what are the issues I may face, and if it ...
0
votes
1answer
16 views
Launching a JavaFx app from within an eclipse plugin
I'm trying to launch a JavaFX app from within a eclipse plugin. Right now I have a viewpart in my plugin. When something is clicked, I do this:
Stage stage = new Stage();
StackPane root = new ...
0
votes
2answers
27 views
EntityManager not persisting in JavaFx
I'm working on a desktop application using JavaFx and Postgres and I'm using NetBeans I use JPA to interact with my DataBase, I successfully created my EntityManager but it seems not to be persisting ...
0
votes
1answer
18 views
JavaFX and Ant - Outside any IDE
So I am trying out JavaFX and I get the following error when building using ant without an IDE:
[javac] warning: Supported source version 'RELEASE_6' from annotation processor
...
1
vote
0answers
55 views
JavaFX webview delay between loading pages
So, I have a webview and want to load 2 (or any number > 1) pages one after another. But the page change has to happen not immediately after the previous page has loaded, but after a certain time. For ...
0
votes
1answer
28 views
JavaFX BarChart Scrollable?
how would I go about making a barchart to be scrollable?
I been trying to use the a scrollPane with the barchart pane inside it.
so far this is what i have:
final BarChart chartPane = ...
1
vote
1answer
19 views
JavaFx text resizing
What is the best way (in terms of performance) to resize a text proportionally to the size of its parent ? I want to make a undecorated window in which the text (which can span several lines) always ...




