I'm having a problem with stylesheets for JavaFX GUI.
My stylesheet won't load and I get this error:
com.sun.javafx.css.StyleManager loadStylesheetUnPrivileged
WARNING: Resource "file:images\stylesheet.css" not found.
I tried putting the stylesheet.css in the same folder as the images. The images are no problem, but the stylesheet is not found.
scene.getStylesheets().add("images\\stylesheet.css");
I also tried this:
scene.getStylesheets().add("file:images\\stylesheet.css");
and:
scene.getStylesheets().add("file:///images/stylesheet.css");
I also tried different folders, like the one where the .java file is in.
Nothing seems to work. It's like Eclipse doesn't recognise stylesheets.