fxml Questions
6
Solved
I want to use font font awesome in my project but I have no idea how to use font awesome in my project.
I had found some example but they can't be use in fxml.
font awesome javafx
I need help h...
1
Solved
I'm using Scene Builder (v11.0.0) to create FXML files for scenes in JavaFX (v12) but, despite instructing all containers to USE_COMPUTED_SIZE for the preferred widths and heights, the rendered sce...
Adduction asked 28/3, 2019 at 17:18
8
Solved
I have a problem with my JavaFX Scene Builder v2.0-b14.
From time to time, the FXML can't get opened. Even if i remove everything from the FXML except the root.
In the taskbar, it looks like this:...
Zonazonal asked 1/4, 2014 at 8:33
3
Solved
I have created a simple JavaFX application.
It has two packages the main class is JFXTest2.java is in good package and the fxml and it's controller are in JFXTest2 package.
now the problem is t...
2
Solved
I am trying to put a JavaFX button in a specific place (specific coordinates) on a UI, but nothing is working. I'm guessing that there is a method that is used for this, but I can't find it.
Bilinear asked 5/4, 2012 at 12:27
1
Solved
I've been searching for this all over the internet, but for most of the questions I viewed that answered in CSS, people just gave code without explaining them.
-fx-effect: dropshadow(gaussian, rgb...
Newark asked 23/2, 2019 at 17:48
1
Solved
What I am trying to do is create a label in fxml, using Scenebuilder, which updates its font size to always ensure that the content of the label is the same size.
Some background info is that I am...
Outbalance asked 2/2, 2019 at 17:6
8
Solved
I was playing around with JavaFX's Tooltip. I realized that for me personally the delay between hovering over something and the tooltip actually appearing is too long. A look in the API reveals:
T...
1
Solved
I created a JavaFX project using JDK 1.8. Works correctly. But if I try to add Maven support, compilation fails.
Firstly, I tried to do it in Java 11 with JavaFX 11 but effect was the same. I spen...
3
Solved
I have the following FXML:
<ChoiceBox>
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="2 minutes" />
<String fx:value="5 minutes" />
&...
7
I suppose it's a very simple thing but I just can't get behind it.
All I want is to show an image over an ImageView linked to fxml.
Here is my code:
package application;
import java.io.File;
imp...
3
Solved
I have a JavaFX ButtonBar with two Buttons (created via SceneBuilder).
I want one of the buttons to be left-aligned and the other right-aligned. (see screenshot)
From the docs I already know how...
Spartan asked 6/9, 2015 at 18:26
3
my aim is to sort a tableview with drag and drop.
I followed this example: http://docs.oracle.com/javafx/2/fxml_get_started/fxml_tutorial_intermediate.htm
For drag and drop I added the fxml via Sc...
7
Solved
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 tri...
Pleasance asked 3/7, 2014 at 0:42
2
Solved
I'm fairly new to using JavaFX and I am looking to add a JPanel into a JavaFX Pane. The code I currently have works, however the panel is very small. I want to be able to resize it so it fits the J...
3
Solved
What is the difference between javafx.scene.text.Text and javafx.scene.control.Label?
The documentation says:
Label is a non-editable text control.
The Text class defines a node that displays ...
1
Solved
After upgrading to Java 10 (from 8), I'm getting these errors:
InaccessibleObjectException: Unable to make field private javafx.scene.control.Button tech.flexpoint.dashman.controllers.configurator...
Confirmatory asked 28/6, 2018 at 12:29
1
Solved
I want to add a custom component / custom components to the javafx scene builder in intelliJ. I'm currently using java 8.1. I heard that adding components to the scene builder is possible with java...
3
Solved
How add background image to an AnchorPane by using Scene Builder?
I've tried it as:
-fx-background-image url('C:/Users/Documents/page_background.gif')
How I set this in Scene Builder.
And the ...
2
Solved
Somewhere inside my FXML, I have this:
<fx:define>
<ToggleGroup fx:id="toggleGroup1"/>
</fx:define>
<Menu fx:id="toggleMyView" text="%MyView">
<items>
<RadioMe...
Shingly asked 1/12, 2015 at 0:20
1
Solved
Is there any easy way to put into the toHomepage() method the getHostServices().showDocument() command somehow, instead of doing lines and lines of code, so the code should look clean and simple?
...
Outdated asked 9/6, 2018 at 13:43
2
Solved
Hi JavaFX Stylesheet expert,
How do I remove the default arrow on JavaFX menuButton.
I have figured how to change the color and make in unvisible with
.menu-button {
-fx-mark-color: transparen...
Sandrasandro asked 13/5, 2015 at 8:58
3
Solved
An example of what I am trying to accomplish here is: when you open an office Word 2013 file and you click file, in the left side it shows a list {Info, New, Open...}.
Are there any JavaFX compone...
3
Solved
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 ...
Maintenance asked 5/3, 2015 at 14:53
1
Can someone please tell me how to make the text inside a label bold in Java FXML?
<Label fx:id="LegalLabel" text= "Legal Information" GridPane.halignment="RIGHT" GridPane.rowIndex="16" />
...
© 2022 - 2024 — McMap. All rights reserved.