I found this code on the site oracle but I can\'t launch with Eclipse it\'s saying me \"Unable to launch\". I have installed JDK 8 but it doesn\'t work...
Anybody h
Eclipse has a problem detecting that JavaFX applications can be launched without a main method in Java 8 - a workaround is to add this yourself
main
public static void main(String[] args) { launch(args); }