On this page : http://download.oracle.com/javafx/2.0/css_tutorial/jfxpub-css_tutorial.htm
is docummented that to apply a css to a scene method you use : scene.getStylesheets().add("path/to/css/file") but it doesn't work, the css file on the same package as the scene. I have to use : scene.getStylesheets().add(getClass().getClassLoader().getResource("package/name/css/file").toString()) to be able to got the css applied.
Attached a sample project with the two ways to apply the css: the fail and work methods.
is docummented that to apply a css to a scene method you use : scene.getStylesheets().add("path/to/css/file") but it doesn't work, the css file on the same package as the scene. I have to use : scene.getStylesheets().add(getClass().getClassLoader().getResource("package/name/css/file").toString()) to be able to got the css applied.
Attached a sample project with the two ways to apply the css: the fail and work methods.