score:1

Accepted answer

i think you need the eclipse workaround for starting javafx applications. simply add the following to the class which extends javafx.application.application:

public static void main(string[] args)
{
    launch(args);
}

Related Query

More Query from same tag