JavaFX 2 provides a Java-based UI platform for creating standalone or browser-based Rich Client Applications. Its Java API enables Java developers to leverage existing skills and tools.

learn more… | top users | synonyms

0
votes
0answers
14 views

what is the difference between setprefwidth() and setmaxwidth()?

What is the basic difference ? When I do like this Button button = new Button(); button.setPrefWidth(50); button.setMaxWidth(Double.MAX_VALUE); any one will think that the button will be shown ...
0
votes
2answers
12 views

Print contents of JavaFx TableView

I am looking for a way to print the contents of a JavaFX TableView. I understand that JavaFX doesn't have Printing capabillities just yet (what a disapointment). I have found some information about ...
1
vote
1answer
13 views

How to write over or across a TextField in JavaFX2?

I have a large number of textfields in tabs on screen - each of them must be validated. If there is an error in the input, I want some indication that a specific field has an input error. Not every ...
1
vote
0answers
19 views

Accelerator for Button in JavaFX

I have an app in JavaFX with .FXML file and i add a button to the scene. Then i tried to add accelerator to it but when it launches it throws NullPointerException. Why it doesn't work and how to solve ...
0
votes
0answers
17 views

javafx2: Data change place in tableview and can't validate change when they was edited

I have a problem with a TableView and custom Row. I explain the problem: I have a TableView with exactly 84 items. So I bind my ObservableList to the TableView and create custom row. I have a custom ...
0
votes
0answers
20 views

Calling JavaScript Function in JavaFX WebView

I am trying to call javascript function in javaFx webview. my js file is function getHTMLOfSelection () { var range; if (document.selection && document.selection.createRange) { ...
0
votes
1answer
9 views

How to use the JRE bundled in a JavaFX 2 self-contained application to start a runnable JAR on Mac OS X?

I created a JavaFX 2 self-contained application for Mac OS X. It works fine. Inside the application bundle (.app), there's a PlugIns directory and inside the PlugIns directory there's a directory ...
3
votes
0answers
15 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
22 views

Menu Button that does not dismiss options onclick in JavaFX 2

I am quite new in JavaFX and I have a question about the design. I am creating my main menu in FXML using Scene Builder. I have various menu buttons and each of these have a sub-menu. These sub-menu ...
1
vote
3answers
59 views

What to do about uncaught run-time exceptions in Java FX2? [duplicate]

Update: As indicated in the comments below, JavaFx8 will handle uncaught run-time exceptions - but what to do about them now? Presently they just go to the Java console so in this case, clicking the ...
0
votes
1answer
21 views

Is it possible to get URL parameters in JavaFX?

I'm building a JavaFX application which will run in browser. Is it possible to get the app URL, like localhost/Java/MyApp/dist/index.html?x=123, in JavaFX? I need to receive that "x" parameter.
0
votes
1answer
15 views

Need physic and path finding for JavafX 2D game

i'm developing a strategic 2D game in JavaFX 2 and i need some basic physic and path finding for my game. Would you plz give some tips and useful link to implement this 2. tanx
1
vote
1answer
28 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 ...
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 ...
0
votes
1answer
15 views

Is there a paint or update method (rendering loop) in JavaFX2 so that I can update the UI in a loop?

In Swing you have paint or update(Graphics g) method for each UI component which executes every frame. You can put your drawing logic in the overrided method and draw whatever you want. What is the ...
2
votes
1answer
17 views

JavaFX 2 Combo box is not working in win xp

I am creating a simple javafx standalone application, were i got a combo box to select different items. But unfortunately, when i am testing this application from windows xp, the combo box doesn't ...
0
votes
0answers
24 views

Java applet using JavaFx

I'm developing an applet. I want to use JavaFx to create the controls. Currently, I'm using An JFXPanel. Here is the code: private JFXPanel jfxPanel; private Canvas canvas; private Scene scene; ...
0
votes
1answer
22 views

How to perform functions on the stage in JavaFX's controller file

this question contains the code for my earlier question Main class @Override public void start(Stage mainStage) throws Exception { Parent root = ...
1
vote
0answers
28 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
2answers
56 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() { ...
0
votes
0answers
23 views

inno-setup OR javafx packager changes my desktop icon, jagged edges

So I'm using Innosetup with javafxpackager, I specify a desktop icon (.ico) in the iss file with 'SetupIconFile'. After installing the application (Win7) the icon on the desktop has jagged edges. At ...
0
votes
1answer
24 views

javaFX. Remove all event handlers (filters)

removeEventHandler() is ok, but what if I don't keep reference on handler ? Can I remove any event handler(filter) by event type or even all handlers from my JavaFX. scene.Node instance? I guess that ...
0
votes
2answers
33 views

Can you communicate with a browser window, after opening it with a JavaFX app?

My question is just as the title indicates. I have a JavaFX app, and need to open a browser window. After opening it, I want to be able to communicate from the browser back to the app that opened it. ...
0
votes
0answers
26 views

Opening files via javafx

I'm designing a GUI desktop application via JavaFX. I wanted to have a button open a mp4 video, and another button open an exe. Is this possible to do/what would I need to do this? It doesn't need ...
1
vote
0answers
75 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" ...
3
votes
2answers
64 views

JavaFX access controller's variables from Scene Builder

If I declare something like @FXML private final static double PREF_SPACING = 10d; or @FXML private Insets insets = new Insets(10d); in the controller class, is there a way to use their values ...
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 ...
1
vote
0answers
39 views

JavaFX self contained application - Preferences API not working

I've created a JavaFX application and deployed it as a self-contained app. The problem is that it is not being abble to write any file and not able to use the Preferences API. The self-cointained is ...
2
votes
1answer
34 views

JavaFX 2 TextArea: How to stop it from consuming [Enter] and [Tab]

I want to use a JavaFX TextArea as though it were exactly like a multi-line TextField. In other words, when I press [Tab] I want to cycle to the next control on the form and when I press [Enter] I ...
0
votes
1answer
27 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
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
0answers
20 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 ...
1
vote
1answer
74 views

Clojure — how to define public mutable members using deftype?

I've been trying to get http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm running in clojure. I discovered that by omitting the @FXML annotation in the java version and making things ...
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() & ...
2
votes
2answers
46 views

shaking Stage in javaFX

is it possible to shake primary stage with Timeline and so Use XTimeline and YTimeLine? final Timeline Xtimeline = new Timeline();//for Animate On X'-Stage ...
3
votes
1answer
60 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
20 views

passing custom java objects to webEngine executeScript

I have person class Person p = new Person(); ....... ..... following is not working webEngine.executeScript("add(" + p + ")"); and in html function add(obj) { ...
1
vote
1answer
49 views

Clojure and JavaFX 2.0 — How to access element's ID from clojure callback function

Following the JavaFX Tutorial here: http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm, trying to make it run in Clojure. For now I'm just doing lein run after setting up :aot :all and ...
0
votes
1answer
31 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
1answer
34 views

JavaFX: get BufferedImage from path

Coming from AWT/Swing, I've started experimenting a bit with JavaFX the last few days. I realized that what I used to do in thousands lines of codes can now be done in a few hundred. One problem I ...
-3
votes
0answers
21 views

I want Full Netbeans JavaFX MP3 Player Project [closed]

Actually i want to make a software like Virtual DJ. So this is just the starting. If some one help me then it will be really good. I need full project so that i can completely understand the code.
0
votes
2answers
26 views

FXML, script tag and initialize method

I am testing and discovering JavaFX. In JavaFX FXML documentation about controllers, it is said that if the controller has a public void initialize() method, it is called once the FXML graph is ...
0
votes
1answer
36 views

Insert/Update SQL table from observablelist

Ok, so I'm working with an ObservableList, which is working fine, but now I need to use the observable list to insert rows into and update rows in an SQL database table. I've found little info on ...
1
vote
1answer
32 views

JavaFX Login screen

I am trying to make an application with a login screen. All the examples I have found talk about making the screen itself, but not how it fits in with the larger picture (application). So I have made ...
1
vote
0answers
16 views

how to add a rich text license to a dmg using a plist with javafx?

All the JavaFX docs say is: The DMG installer also supports a click-though license provided in the text format. If use of rich text format is desired, then prepare the license.plist file externally, ...
2
votes
1answer
16 views

How to set text to registered trademark symbol in fxml Label element

I'm just starting out with JavaFX and I'm trying to add a Label element in fxml file with text displaying the registered trademark symbol. (R inside a circle) <Label styleClass="superscript" ...
0
votes
0answers
18 views

Automatic resizing of LineChart fails if embedded in a pane

The following program fails to resize the line chart horizontally when embedded in a Pane (or borderpane of anchorpane for the matter) If the line chart is directly parented to the VBox instead, then ...
0
votes
1answer
28 views

Animated TreeView and nested Accordions

I want to achive a Navigation for my application that looks like a TreeView but is animated like a TitledPane. That is, a Transition when expanding/collapsing an item for its content. What I did so ...
3
votes
1answer
68 views

JavaFX fullscreen

Is there any way to make fullscreen(and if possible resizing too) to instead of rearranging everything (actually what it does is to rearrange the elements like resizing but to the whole screen) to ...

1 2 3 4 5 38