Questions tagged [openjfx]
229 questions
0
votes
0 answers
UnsatisfiedLinkError occurs on openjfx webkit(32bit)
In order to use webview with amazoncorretto 8 (32bit), I want to build 32bit openjfx.
I could create a library, but when I use it I get an UnsatisfiedLinkError.
Build it with reference to the following…

kimomon
- 1
- 1
0
votes
0 answers
OpenJFX 11 creates undecorated windows on unix
I am using OpenJFX 11 and set it up according to the documentation here:
https://openjfx.io/openjfx-docs/#install-javafx
I used their HelloFX example and compiled it like this:
cromon@cromon-elementary:~/temp$ /opt/java/latest/bin/javac…

Cromon
- 821
- 10
- 24
0
votes
0 answers
OpenJFX packaging with application
I am trying to work with JavaFX/OpenJFX. I see that it has dependencies with platform classifier, e.g., javafx-graphics, for common platforms (Windows, Linux, etc.). I am looking ahead and I am curious
if I can just package all the platform .jar…

wilx
- 17,697
- 6
- 59
- 114
0
votes
1 answer
OpenJFX only renders Parts of a Window when run on Ubuntu
EDIT:
After some testing with options it turns out that when call: stage.initStyle(StageStyle.UNDECORATED) on the stage it resolve this problem of the window not showing, but then the window does not have controls. That means it might have to do…

Liz3
- 145
- 1
- 11
0
votes
0 answers
How to compile a Maven JAR file with JVM args use a plugin?
I'm looking for a Maven plugin that could execute by itself the good JVM arguments.
For now, I've tried using the maven-compiler-plugin and the maven-surefire-plugin (the pom of my project is down below).
the type of argument I want the jvm to…

midugh
- 608
- 5
- 21
0
votes
2 answers
How to install missing libs on Ubuntu 18.10 to playback video using OpenJFX 11
I am recently installed OpenJDK 11 and OpenJFX 11 on my Ubuntu 18.10.
It gives me an error
com.sun.media.jfxmedia.MediaException: could not create player
when I am trying to play mp4. Looks like I missed some libraries. What is a correct way to…

Konstantin Pupkov
- 93
- 5
0
votes
1 answer
javafx.base reads package javafx.beans
I'm using OpenJDK 11 and OpenJFX 11.0.1 with Gradle in IntelliJ IDEA for my project.
When I use javafx.base module, IntelliJ IDEA reports an error at line 1 (project module declaration) saying I'm not including the javafx.beans module (beans is a…

Tin Svagelj
- 124
- 1
- 13
0
votes
0 answers
Gradle JavaFX project with OpenJDK 10
I have working Gradle/JavaFX project. It worked correctly with JDK8, but now I switched to OpenJDK 10, and my IDE (Eclipse) don't know any JavaFX classes. In maven repositry I found OpenJFX. I tried to add dependencies to my build.gradle file and…

Kiryl Tkach
- 3,118
- 5
- 20
- 36
0
votes
1 answer
Automatic module VM options for jar file
So I am currently playing around with the new changes in Java 11 and thus the external OpenJFX SDK.
However I guess it would be much easier for me to distribute one single jar file and let users download their required SDK stuff on their own and put…

Jalau
- 303
- 1
- 2
- 11
0
votes
0 answers
openjfx 11 with intellij idea 2018.2
I have existing Java project in which i was using JavaFX. Now i am shifting it to Java 11. I have download openjfx and add its lib directory path to external libraries. Added following in run configuration in VM options:
--module-path…

Hina
- 11
- 1
0
votes
2 answers
How to launch openjfx 11 app on Intellij Idea?
I am using openjfx 11 with java 11.
If I launch the app with mvn, it works fine. I have those dependencies added:
org.openjfx
javafx-fxml
…

Thiago Sayão
- 2,197
- 3
- 27
- 41
0
votes
1 answer
How to optimize JavaFX layout pass time?
I have written a JavaFx Application(JDK 8), which parses a private format XML (XML contains all of the Shape attributes such as coordinate, size, fill, stroke and so on) to construct a scene graph with about 4000-5000 Nodes layout according to their…

KaLa
- 21
- 5
0
votes
1 answer
Is openjfx megred in OpenJDK?
I would like to know if openjfx is merged in OpenJDK, if not where can I find ppa link of openjfx?
Thanks

DeathKiller
- 1
- 1
-1
votes
1 answer
Custom cell factory for my JfxListView returns raw objects
So my Custom cell factory should return two fields from the Message object, instead I get raw object in ListView Output from ListView.
There is a code responsible for formatting two Text objects which gets values from fields in Message object.
…

Maki Nishikino
- 1
- 1
-1
votes
2 answers
How to get variable react native
I'm using react native expo for the following project basically i want to retrive the selected item form an flat list and display it in a modal
import React,{ Component}from 'react';
import {View,Text,Image,StyleSheet,Modal,Button} from…