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
4
votes
1 answer

How to add AwesomeFontFX Icon Pack to JavaFX Project in IntelliJ IDEA?

I am creating a mini-JavaFX project and wanted to use the Awesome Font Icon Pack.I loaded the fontawesomefx-8.9 using the Scenebuilder and opened the FXML in it and loaded two icons in it, also added the JAR file in External Libraries in IntelliJ…
Trileo Stark
  • 43
  • 1
  • 4
4
votes
0 answers

Scene Builder with JFX 11 imports

I have a jar with custom controls. When it is built under Java 10 I'm able to import it to scene builder and access my custom controls. When I build it using Java 11, the list of controls to import is empty. Does anyone know if there's something…
Dodd10x
  • 3,344
  • 1
  • 18
  • 27
4
votes
1 answer

JavaFX LineChart using SceneBuilder

I'm trying to make a simple LineChart with some random info, but when I try to do it with a fxml file though SceneBuilder the Chart shows but never gets filled. Whenever I create the vbox,linechart and scene manually everything works fine. I'm…
Arigatex
  • 43
  • 1
  • 7
4
votes
1 answer

JavaFX/SceneBuilder - Changing only PART of a Scene

I'm a total newbie in JavaFX and I haven't found any tutorial/answer about this matter. So basically what I'd like to do is change only part of my Scene. I want to keep a static menu bar at the top and only change the bottom part according to which…
Yar Mommy
  • 55
  • 9
4
votes
2 answers

Can't resize window of scene builder

I am using Ubuntu 16.04 with kernel 4.4.0.77, on 81 SceneBuilder doesn't work. My problem is, when I launch Scene Builder I cannot resize main window app. How can I resolved this problem? Edit. Scene Builder can be resized when I launch it from…
DBadura
  • 109
  • 2
  • 10
4
votes
2 answers

How to trigger an event on focus out for a textfield in javafx using fxml?

I have this function in the controller class of the relevant fxml. I need this function to be fired on focus out from a textfield, but scene builder doesn't have an event similar to onfocusout. How to achieve this using the control…
v1shva
  • 1,261
  • 3
  • 13
  • 28
4
votes
1 answer

how can i make flowpane scroll when resized

I want to show a scrollbar automatically when the window is resized to be able to see all the rectangles Before resizing: After resizing: In the bottom, the rectangles disappear but they are still there. so is there a way to combine the Flowpane…
Mohamed SLimani
  • 351
  • 2
  • 9
4
votes
2 answers

add listener for javafx textField upto 2 decimal place

I want to set javaFX text field upto two decimal places . I found the answer but it is for numeric value . e-g // force the field to be numeric only textField.textProperty().addListener(new ChangeListener() { @Override public void…
Zubair CH
  • 43
  • 1
  • 9
4
votes
2 answers

JavaFX Label not updating with setText()

I have done a lot of searching and cannot seem to find a solution to my problem, I am trying to get the label selectedName to update when the user enters his/her name inside Intro.fxml and appear on Main.fxml. However it still appears as…
benjay_uk
  • 107
  • 2
  • 8
4
votes
1 answer

How to Attach Modal Dialogue to Main Window in JavaFX?

Examples of Attached Modal Dialogues: Is there any way to bring this to JavaFX?
Berry
  • 2,143
  • 4
  • 23
  • 46
4
votes
1 answer

JavaFX Scene Builder Menu object not draggable

I'm new to JavaFX and SceneBuilder. In SB, I'm trying to place a Menu object in a AnchorPane with a drag and drop and this operation is not being possible as no menu object instance is being dragged. Also, no drag and drop is being allowed also to…
Pedro Costa
  • 41
  • 1
  • 3
4
votes
6 answers

Cannot create FXML file in JavaFX project in Eclipse

OS: Ubuntu 14.04. IDE: (Eclipse Mars.1 Release (4.5.1)) and Scene builder 2. I can't choose root element because as I understand it should be done. This window I see when creating a file. Maybe I incorrectly set the path to my Scene Builder…
Kas Elvirov
  • 7,394
  • 4
  • 40
  • 62
4
votes
1 answer

IntelliJ IDEA 15 Scene Builder not showing all controls

I have troubles with the built in Scene Builder. When used standalone Scene Builder displays everything fine. Did I mess up some settings in IntelliJ Idea or it's a bug. I use IntelliJ Idea 15.0.3 (64 bit) and Scene Builder 2.0. One thing I changed…
NickSoft
  • 3,215
  • 5
  • 27
  • 48
4
votes
1 answer

JavaFX + Scene Builder how switch scene

I'm working with JavaFx and Scenebuilder and want create a local app for myself called "Taskplanner" in eclipse. I created a new Stage and set it with a Scene (see Main.java). But not sure how to set a new Scene in the old stage (see…
Sam S.
  • 143
  • 1
  • 3
  • 12
4
votes
1 answer

set JavaFX .root styles in css

I want to apply several styles (font, font-size) to my components initially via css-file. (I am using the SceneBuilder 2.0 from oracle.) So I added my css-file to the top component. My css-File looks like this: Application.css .root { -fx-font:…
KnusperPudding
  • 313
  • 2
  • 10