Questions tagged [javafx-8]

JavaFX 8 (previously named JavaFX 3) introduces a new API for JavaFX technology. JavaFX 8 supports 3D and brings up a Retina-Display Support. It is part of the JDK8.

JavaFX 8 is part of the JDK 8

Useful resources:

JavaFX-2 links, actual for JavaFX-8 :

Testing JavaFX-2+ applications :

Declarative languages for JavaFX :

OpenJavaFX links :

JavaFX Scene Builder links :

Blogs and news sites about JavaFX :

Projects, complementing and extending basic functionality of JavaFX :

Books about JavaFX 2 technology :

Personal blogs, by people, who write about JavaFX :

Use javafx-2 tag for questions, related to JavaFX 2+ (versions 2.0+), which is the prequel of javafx-8.

Use JavaFX 2 bug tracker to file and track issues about bugs and incompatibility (having previously checked, that dublicates are not existing already, and it is not an intended change).

5923 questions
2
votes
1 answer

JavaFx: How to make 'Tooltip' bigger?

I set tooltip for buttons,but it looks so small(font size),how can I make it bigger?I have tried myTooltip.setFont(new Font(20)),but it dosen't work,why?And how can I make the font bigger? Thank you all guys!
Erum Huang
  • 307
  • 1
  • 3
  • 16
2
votes
0 answers

How to implement a sliding pane using JavaFx 8?

I'm currently experimenting with JavaFx 8 and its different Panes. So I want to implement a hidden Pane with a visible Button which follows a set of rules, for example: The Pane can be placed in 4 positions within its parent: TOP_CENTER,…
Christian Rädel
  • 581
  • 1
  • 5
  • 13
2
votes
0 answers

Resizing a TabPane on Tab Selection JavaFX

I have a TabPane with multiple tabs inside a dialog . Within each of the tabs sits a pane with a different default size. I don't want to set the min, max, or pref size as I want my application to layout the pane automatically and hence deal…
Jamie Macaulay
  • 794
  • 6
  • 20
2
votes
1 answer

Updating an animation in javafx: Path Transition over an adjustable curve

I'm new to Javafx and I'm experimenting with animations. Following this, I've created a curve with two anchor points. Moving the anchor points changes the shape of the curve. Next, I followed this to create an animation where a square follows the…
Joris Kinable
  • 2,232
  • 18
  • 29
2
votes
2 answers

JavaFX 8 default message icons

with the last few updates of JavaFX we have alerts. I want to get the message's default icons (error, warning, ...). In Swing, I can get the L&F message icons through some UIManager's properties. How can I get the message's default icons in JavaFX?…
Alberto
  • 1,569
  • 1
  • 22
  • 41
2
votes
0 answers

JavaFX8 Collision Detection for ImageView

When I googled it, many people are using getBoundsInParent() and intersects(Bounds) methods. I am concerned that the bounds of image is rectangle. The MouseEvent works perfect on ImageView(it detects only real image and ignores the transparent…
Rin
  • 99
  • 1
  • 3
  • 6
2
votes
1 answer

WebEngine is not loading files linked in HTML (javafx)

Here is the tag of content.html: TODO supply a title
Dave_cz
  • 1,180
  • 10
  • 17
2
votes
2 answers

JavaFX 8 maxWidth Ignored?

JavaFx 8 maxWidth Ignored The maxWidth is ignored for HBox children with wider content. For example, the center Pane below is far too large, extending under the right column (Pane):
Brent Faust
  • 9,103
  • 6
  • 53
  • 57
2
votes
1 answer

javafx task error: NullPointerException

I wrote a code to decode base64 image and represent that image in javafx. In my url base64 code continuously change.So that's why I used task in my javafx code. But I get an error : java.lang.NullPointerException: Children: child node is null:…
AOsa
  • 23
  • 1
  • 5
2
votes
0 answers

JavaFX 8: Handling maximize request before it's actually done

I need to change effect of clicking maximize button of the stage, so it will be just put into another stage. But to achieve that, I need to handle maximize request before it's actually done. I tried this: stage.maximizedProperty().addListener(…
2
votes
0 answers

JavaFX app with SOAP communication. Is it possible?

I am new to JavaFX and SOAP. I want to make JavaFX app that will be able to receive XML files using SOAP. I only found this link: http://abhisarswami.blogspot.sk/2009/05/soap-request-from-javafx.html Unfortunately that tutorial is for JavaFX 1.0,…
Wlad
  • 410
  • 1
  • 9
  • 27
2
votes
1 answer

JavaFx - TableView: How to use custom Comparator for sorting?

... where T is the generic type of the TableView. I'm implementing a file-listview with three columns, so far. Each of type java.nio.file.Path. For the name column, I wrote a Comparator which sorts the files with directories-first and…
Christian Rädel
  • 581
  • 1
  • 5
  • 13
2
votes
0 answers

ComboBox Crash javafx 8 JDK 51

So my program that's been using ComboBox has stopped working. Before i updated my jdk from 8u20 to 8u50, now when the same program is run without any changes to it, if the ComboBox is selected without tabbing to it first, it causes the program to…
Josh
  • 187
  • 1
  • 1
  • 9
2
votes
3 answers

Issue with Inno Setup SignTool option

I have the following line in my Inno Setup script: SignTool=MySign cmd /c C:\SigningTools\signtool.exe sign /f C:\MyCert.pfx /p MyPassword $f This works on my local machine. I then commit my changes to our server and Jenkins will compile and make a…
dwaddell
  • 1,446
  • 12
  • 22
2
votes
1 answer

Get full Height of the window pop-up include title bar in javafx

How to get full size of height on the window pop-up in javafx. I have a fxml layout design by sceneBuilder with Height of the pop-up window is 147. when the pop-up show on the pop-up have a title bar of Window. my problem how to get full height…
vxba
  • 69
  • 1
  • 1
  • 6
1 2 3
99
100