Hi
I've build a JavaFX application.
I dynamically load a css file from the user.home folder.
I use the native packaging option with Netbeans
I tested the application on different platform Windows 7 32bit, Windows 10 64 bit, OS-X and all works perfect.
Yesterday installed at a end-user who has Windows 7 64bit.
His user account is NOT belonging to the administrator group.
When the application starts the layout is scrambled as if the CSS is not loaded.
I don't see any exceptions in the log.
I add the stylesheet like this:
scene.getStylesheets().add("file:" + f.getAbsolutePath().replace("\\", "/"));
Note that this works fine when running the application as administrator.
Has anybody have some pointers?
Thanks