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

Adding custom classes to fxml files

How can I add a custom class to an fxml file. I've tried this adding this: package gameName.FinishedClasses; import javafx.scene.control.Button; public class CardButton extends Button { int cardID; public CardButton(String n , int m) { …
Oladam
  • 39
  • 1
  • 6
0
votes
0 answers

Gluon Install DLL

When I attempt to install SceneBuilder I get the following error message. I've tried installing as administrator and using compatibility settings but neither solve my issue. I was wondering if you could…
user3105106
0
votes
0 answers

Gluon Scene Builder 8.3.0 - FXML fails to load when contain fx:include

Part of my FXML file contains the code at the end of this thread. It seems that the new Scene Builder (8.3.0) does not support the < fx:include/> part, cause when I try to open the FXML file it returns the following exception. Caused by:…
javasuns
  • 1,061
  • 2
  • 11
  • 22
0
votes
0 answers

JavaFX 8 + Scene Builder + Editing Cells & writing back to FXCollections.observableArrayList

I want to do the following: Edit a cell, save the data to inside my FXCollections.observableArrayList after which the table was populated. FXMLController: @FXML void initialize() { assert nickColumn != null : "fx:id=\"nickColumn\" was not…
0
votes
1 answer

How To Populate TableView Cells - Used Scene Builder

I'm new to Java and Java FX and Scene Builder. I put a TabPane into a BorderPane and am now trying to populate the TableView I put into the TabPane with values. I have 2 classes, the Player Class and the PlayerList Class. will just populate items…
0
votes
2 answers

Connect SceneBuilder to fxmlloader

i made this short drawing app in IntelliJ, and i've tried SceneBuilder for the first time. The "sample.fxml" i made in scene builder won't load into my Main-class, so i made the Canvas etc. myself directly in the Main-class itself. What am i doing…
blixenkrone
  • 388
  • 2
  • 7
  • 20
0
votes
1 answer

Should I use SceneBuilder for a large, complex JavaFX GUI?

I've written some complex GUIs in Swing and I've never used a graphical tool. I've always just written the Java code. Now I'm writing my first JavaFX GUI, and it will be a large, complex GUI that gets all data values from the cloud. I've started…
Dean Schulze
  • 9,633
  • 24
  • 100
  • 165
0
votes
1 answer

How to make more buttons work using HandleButtonAction and if-statements

I have managed to get 2 buttons working using an if and else statement. if i add another if/else statement the program no longer works. How can i add more statements so that other buttons in my GUI work? I have about 7 more buttons to code package…
0
votes
0 answers

javaFX scene builder widget won't add

I'm a javaFX beginner and I use Intelij idea IDE. So I tried to use javaFX scene builder downloaded from Gluon, first trying to drag and drop a button for starters and instead of adding this seem's to only leave a yellow imprint of some kind. afraid…
이근윤
  • 1
  • 1
  • 2
0
votes
0 answers

Java FX Disable Stage Maximisation Animation

When I open a new window in my application and maximise it using newStage.setMaximized(true); it shows the animation of the window increasing in size from the default size to the size of the screen, is there any way to disable this animation and…
tnoel999888
  • 584
  • 3
  • 12
  • 29
0
votes
0 answers

How to populate a ListView with JavaFX and SceneBuilder

Here is my code: @FXML private ListView clientList; @Override public void initialize(URL url, ResourceBundle rb) { clientList = new ListView<>(); clientList.getItems().addAll("test", "test2"); } Can anyone tell me where I've gone…
theopendle
  • 356
  • 2
  • 7
0
votes
0 answers

JavaFX chart in gluon's scene builder not displaying CategoryAxis or NumberAxis

The CategoryAxis and NumberAxis for all charts is no longer visible in Gluon's Scene builder. Is there a fix within scene builder for this? Or is this a bug?
jerryG
  • 1
0
votes
0 answers

JavaFX SceneBuilder crashes when fit to parent on mac

I am using Intellij IDEA (newest version) with SceneBuilder. When i try to use the function "Fit To Parent" in Scenebuilder, it crashes. I have no idea why it does this. Does anybody have a fix for it? I'm running under macOS Sierra.
0
votes
0 answers

unable to use GridPane to load fxml file in java

I'm looking at some javafx tutorials using scene builder. I created my fxml file but when I try to load it I get an error: Jan 27, 2017 10:38:39 PM javafx.fxml.FXMLLoader$ValueElement processValue WARNING: Loading FXML document with JavaFX API of…
antobbo
  • 255
  • 1
  • 4
  • 21
0
votes
1 answer

cannot extract time data from XML file

I am trying write a software, which will have a video player, transcripts and run them in sync. I am having a problem with the transcripts at the moment. I have attached the XML file I am using: NodeList nodeParagraphs =…
Programmerr
  • 961
  • 3
  • 9
  • 11
1 2 3
99
100