adamshu653
adamshu653

Reputation: 125

SceneBuilder not loading in Intellij

Scene Builder does not open in my Intellij. I've tried different JDK versions, but I just cant get it to load up in my IDE. It was working before I had to reinstall my OS. I don't get an error or anything, the Scene Builder window is just blank. It works if I run it standalone though.

I'm on Ubuntu 20.04.1. Using JDK 11 and Scene Builder for JDK 11. I tried with JDK 14 and I still get the same issue. I attached an image of the screen I get.enter image description here

Any help? Intellij asked me to download the Scene Builder kit, then it asked me to download JavaFX. I did. Then I ended up here. JavaFX was included as a global library though so I didn't quite understand that.

What should I do?

Upvotes: 11

Views: 11298

Answers (5)

Aung Myat Moe
Aung Myat Moe

Reputation: 36

Disable the Java Runtime Plugin. Then restart IDE.

enter image description here

Click download jar file and that's.

Click download JavaFX

Upvotes: 1

Sahar Asadian
Sahar Asadian

Reputation: 161

You should go to file -> settings -> plugins search for javaFX and install JavaFX Runtime for Plugins.

Restart again and the problem will be solved.

Upvotes: 13

Code on the Rocks
Code on the Rocks

Reputation: 17596

2023 Answer

I am currently using IntelliJ Ultimate.

  • Build #: 223.8617.56

  • Runtime version: 17.0.5+1-b653.25 aarch64

  • VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.

To fix the missing SceneBuilder issue, I completely disabled the JavaFX Runtime for Plugins plugin and restarted IntelliJ.

When I did that, I received 2 banners to install JavaFX and the proper JDK. enter image description here

Upvotes: 5

Dmitriy
Dmitriy

Reputation: 455

The solution for me was 'Settings> Plugins> search JavaFX' to enable and disable this plugin, then restart intellij idea

Upvotes: 2

Danzon2504
Danzon2504

Reputation: 91

You can run the SceneBuilder from outside Intellij and simply select your FXML, which works better in some cases, because there are some problems with the BuildIn Version (at least on Windows)

You can download it from Gluon.

Upvotes: 2

Related Questions