Maybe a really newbie\'s question....
I\'m starting learning JavaFX in a FMXL Application using the Scene Builder, by reading this tutorials:
http://docs.ora
I took a look at an FXML document generated using the JavaFX Scene Builder. You access controls from Java Controller with the fx:id. (edit) I stand corrected, the id does matter.
You can apply css from the FXML document like this:
(Replace slider with any control)
And Java controller interaction:
@FXML
Slider myslider;