Questions tagged [scenebuilder]

SceneBuilder is a UI design tool for JavaFX. It supports WYSIWYG drag-and-drop editing and produces FXML which can be used in JavaFX applications.

JavaFX Scene Builder is a visual layout tool that lets users quickly design JavaFX application user interfaces, without coding. Users can drag and drop UI components to a work area, modify their properties, apply style sheets, and the FXML code for the layout that they are creating is automatically generated in the background. The result is an FXML file that can then be combined with a Java project by binding the UI to the application’s logic.

The Scene Builder project was created using JavaFX by Oracle and it is open source within the OpenJFX project.

Oracle provided binaries, up until Scene Builder v 2.0, including only JavaFX features before the release of Java SE 8u40.

Gluon took over the binary releases distribution, and an up-to-date Scene Builder 8+ can be downloaded for every platform from here: https://gluonhq.com/products/scene-builder/

It includes the latest changes in JavaFX, and also recent improvements and bug fixes.

The open source project can be found here. Issues and feature requests can be filed here and pull requests here.

The Oracle legacy binaries still can be downloaded from here.

1992 questions
6
votes
1 answer

JavaFx Scene Builder Choose Bar Chart Axes Type

I am trying to create a bar chart where the x-axis is a Number axis, and the y-axis is a Category axis. This way the bars will be starting on the y-axis and extend to the right. However, it seems as though Scene Builder will only default to allowing…
Erik Owen
  • 83
  • 1
  • 5
6
votes
3 answers

How do I center an Image view in an anchor pane?

I am using scene builder to create my GUI and I am displaying Images as users select items in a list. The Images are of different sizes and when an Image that is smaller than the pane it is in, the image is displayed in the top left of the pane. How…
j will
  • 3,747
  • 11
  • 41
  • 64
6
votes
2 answers

JavaFX SceneBuilder 2.0 doesn't open FXML for custom components with fx:root as main layout tag

I have custom component with layout on FXML file which containts line I create this file on SceneBuilder 1.0, but then i try open this file on SceneBuilder…
Dmitry Nelepov
  • 7,246
  • 8
  • 53
  • 74
6
votes
2 answers

JavaFX Scene Builder and fx:include

I am wondering how one can use fx:include in conjunction with the JavaFX Scene Builder, therefore: Imagine I have a BorderPane (file borderpane.fxml). In the center section I want to put a Label which shall however be defined in a separate FXML…
stefan.at.kotlin
  • 15,347
  • 38
  • 147
  • 270
6
votes
6 answers

is JavaFX Scene Builder available on linux support?

I can't find JavaFX scene Builder Linux package on the Oracle official website http://www.oracle.com/technetwork/java/javafx/overview/index.html is there any Solution so that I can work on it on a Linux plateforme ?
Walllzzz
  • 550
  • 1
  • 5
  • 16
5
votes
0 answers

-fx-font-weight: bold not working for Javafx 17

Recently, We shift our project Javafx8 to Javafx17. All css properties seems to be working fine but -fx-font-weight: bold not working. We are stuck on this since last two days. We have tried every possible solution But, it is not…
Saad Khan
  • 201
  • 2
  • 10
5
votes
1 answer

JavaFX is there anyway to set the two colors of a selected treeview item using css

Is there any way to change the color of a selected TreeView item, instead of the default red and blue color that shows when a TreeItem is selected
Tule Simon
  • 111
  • 6
5
votes
1 answer

javafx line chart spread out categories along gridlines

I have built a Line Chart using SceneBuilder. I seem to have little control over the axes values. The x-axis is the one giving me the most trouble. I am adding the series data in lines like this, within a loop: openSeries.getData().add(new…
Eddie T
  • 101
  • 5
5
votes
1 answer

code set background color for Anchorpane in FXML document

I am creating a small application in javafx. I want to set a background color so following is my FXML code .. how I need to set background color
user8430128
5
votes
3 answers

FXML Load Exception no resources specified

I am starting to build a program with SceneBuilder and JetBrains IDE, i want to internationalize the program so i made a properties file. Everything works fine on the SceneBuilder but when i try to run the program with JetBrains i get this…
P_Ferreira
  • 363
  • 1
  • 4
  • 21
5
votes
1 answer

SceneBuilder crashed upon startup

I performed the installation of SceneBuilder 8.3.0 on Ubuntu Gnome 17.04 with Java Hotspot 1.8.0_131 installed, but when trying to start it, an error occurs, making it impossible to initialize. I've already tried installing Oracle's SceneBuilder…
David
  • 269
  • 1
  • 3
  • 10
5
votes
1 answer

JavaFX Scene Builder yellow boxes do not disappear

I am using the JavaFX Scene Builder (with and without Intellij Idea) in the following version: Product Version JavaFX Scene Builder 8.3.0 Build Information Version 8.3.0 Date: 2016-12-16 Java Version: 1.8.0_111-b14, Oracle Corporation The problem…
mnzl
  • 372
  • 3
  • 14
5
votes
3 answers

How to align all textfields right in Scene Builder?

Problem is: How I will align all textfields on the right side. I tried and select all textfields and in Layout Alignment Top-Right but it didn't work then what should I do? One thing more I also want it should auto resize VBox with specific range…
badarshahzad
  • 1,227
  • 16
  • 25
5
votes
1 answer

How to add a click event to a tableview cell in javafx

My goal is to detect when a user double clicks a cell in the TableView and use the information from that cell. From my picture you can see I will have a table of beers, breweries, and style. Upon double clicking a cell I want to show the user an…
Jonathan
  • 93
  • 1
  • 3
  • 10
5
votes
1 answer

JavaFX Scene Builder - Using Variable Values

I'm trying to use Scene Builder to handle a complicated GUI I'm working on and for the sake of simplicity I'm trying to fix the window's height and width to half of the user's screen height. The problem I'm encountering is that Scene Builder won't…
steinybear
  • 51
  • 2