José Pereda

Results 217 comments of José Pereda

The title bar of the window is actually managed by the system, so that explains why it works. Recently I fixed probably this very same issue with this PR: https://github.com/openjdk/jfx/pull/399...

I've run a simple test case with strings from your properties files: ``` @Override public void start(final Stage primaryStage) { final Label btn = new Label("सर्वर होस्टनाम/आईपी"); // final Label...

When you run the executable, you do that from a terminal? Can you try: ``` l.exe 2> log.txt ``` That will print all the error output to the log.txt file,...

Most likely you have an exception, you need to check the output. By default, you will find a log here: target\client\x86_64-windows\gvm\log, search for the RUN task logs. Another option is...

Can you add `true` to the plugin, and run again `mvn client:link client:run`? See if you get more output in the client-debug.log file.

Right, gvm/log is only enabled if you run with `mvn client:run`. If there are build errors, you won't get an exe.

there you go: `java.lang.ClassNotFoundException: javafx.scene.control.TableColumnBase` Explanation: you are using FXML in your project, that uses reflection. All classes that are called reflectively have to be added to the reflectionList. See...

Well, right, you are not using FXML (my bad) However, JavaFX does use reflection in this call: `com.sun.javafx.util.Utils.forceInit` (see https://github.com/openjdk/jfx/blob/22d4343fe8563c2931910b98e8f18c6fd4a48f05/modules/javafx.graphics/src/main/java/com/sun/javafx/util/Utils.java#L853) The proposed fix still applies.

The same procedure applies: you need to see the logs, you will find an exception at some point. If it is a class not found exception, add it to the...

I mentioned it above: open a terminal and run: `\path\to\target\client\x86_64-windows\hellofx.exe > out.txt 2>&1`