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
99
votes
5 answers

Where exactly can I download the latest version of Scene Builder for Java?

I've searched around Oracle's sites and cannot find the actual executable to download. I get sites that point to older versions, or to the source of Scene Builder instead. I'm looking for the actual windows/mac executable installer for the latest…
Zareh
  • 1,225
  • 2
  • 9
  • 6
95
votes
3 answers

Where has the JavaFX scene builder gone?

I am trying to find the elusive JavaFX scene builder so I can use it in Intellij. I am on Windows OS. Oracle have stated that the JavaFX scene builder is included in a new download, but no matter how I search I cannot find it (see…
tentimes
  • 1,462
  • 1
  • 11
  • 16
61
votes
2 answers

Remove the default 'no content in table' text for empty javafx table

I would like to remove or change the default text shown by an empty javafx table from No content in table to something more meaningful for the user. For example in a table showing students, when there are no students to show I want it to say "No…
50
votes
4 answers

What's the difference between fx:id and id: in JavaFX?

Maybe a really newbie's question.... I'm starting learning JavaFX in a FMXL Application using the Scene Builder, by reading this tutorials: http://docs.oracle.com/javase/8/javafx/get-started-tutorial/fxml_tutorial.htm So once i applied some changes,…
Analyst
  • 945
  • 1
  • 9
  • 15
48
votes
5 answers

How to right align a button in Java FX toolbar

I am building a UI using Java FX scene builder and I want a button in a toolbar to float towards the right side of the toolbar. I have tried changing the node orientation of the parent(toolbar) and also the button but both seem to be ignored.
40
votes
5 answers

How to make window fullscreen/maximized in Scene Builder?

I am making a view in SceneBuilder for my JavaFX application. I want my view to be maximized. How can I achieve this in SceneBuilder or the .fxml file?
Navi89CZ
  • 421
  • 1
  • 4
  • 6
35
votes
2 answers

Include ControlsFX in Scene Builder?

Is it possible to include the component of Controls FX in Scene Builder ? If yes, can you tell me how, if no can you tell me if there're alternatives ?
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
34
votes
7 answers

Why would scenebuilder 2.0 fail to open my fxml file?

I have an fxml file that I created using SceneBuilder 2.0. This file is used in my JavaFx project that I am developing using Netbeans 8. Today, SceneBuilder stopped working with my file. When I tried to open it, SceneBuilder would minimize and would…
Justin Wiseman
  • 780
  • 1
  • 8
  • 27
33
votes
8 answers

How to switch scenes in JavaFX

I have looked on many pages to try and find out how to switch scenes but I have been unsuccessful. I have a calculator and my goal is to select a menu option to change Calculators(ie: basic and scientific). Right now I am just testing so here is my…
Megan
  • 474
  • 1
  • 5
  • 11
32
votes
3 answers

JavaFX scene builder 2: controller class

Hi im building a JavaFX project and am using JavaFX Scene Builder 2. I wanted to link my controller to my fxml file but i can't see the possibility to add a controller to my fxml file in Scene Builder 2. I was wondering if someone could help me out.…
jan behang
  • 535
  • 1
  • 4
  • 12
31
votes
3 answers

Styling a JavaFX 2 button using FXML only - How to add an image to a button?

I want to change the styling of a button, most of the threads here and the articles on the internet show how to do it using Java code, which I don't see it as a real good solution, is there any way for example to set a button with some text and an…
AymenDaoudi
  • 7,811
  • 9
  • 52
  • 84
27
votes
3 answers

Switch between panes in JavaFX

I'm trying to make a Java program in JavaFX using FXML. However i'm having trouble with the layout management. I want to switch between Panes, just as i'm used to with CardLayout in swing, but i can't seem to get it. I googled around and didn't find…
chribsen
  • 6,232
  • 4
  • 26
  • 24
25
votes
3 answers

table column won't take full size of the table view in javaFX

i am trying to create a table with two columns. i am using the scene builder included in netbeans 7.2. in all the examples i have seen all you need to do is drag the table column to the table and it will take the full size, this is not true in my…
Raven
  • 713
  • 2
  • 10
  • 21
22
votes
4 answers

How to create a popup window in javafx

I want to create a popup window in a JavaFX application. Give me some ideas. When I click on Check button it opens the popup window. How to do it?
Maulik Patel
  • 2,742
  • 4
  • 19
  • 28
21
votes
2 answers

Adding a custom component to SceneBuilder 2.0

I have the need to have a selection listener and select method on a pane to be able to monitor and present a highlight when a node is clicked on. I did the following: public class PaneWithSelectionListener extends Pane { private…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
1
2 3
99 100