cljfx

hairfire 2022-02-24T20:41:28.418309Z

I've managed to successfully create a cljfx application, and a Windows .exe installer using jpackage. Thanks to @vlaaad, and all the others that contribute to and around cljfx.

👍 3
hairfire 2022-02-24T20:43:31.773779Z

I'm trying to add a splash screen using jpackage, and I've done so. The problem is that the splash screen remains visible even when the cljfx stage component renders. Any thoughts on how to make the splash screen invisible?

hairfire 2022-02-24T22:49:21.375779Z

There's a Java class called SplashScreen. What works for me is:

(when-let [splash-screen (SplashScreen/getSplashScreen)]
    (.close splash-screen))

👍 2