Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Efxclipse/Tutorials/Tutorial1

  1. File > New > Project
  2. Select the "JavaFX Project" entry
  3. Enter a project name and click "Finish".
  4. Create a Java package in your new project.
  5. Open the context menu on your package and select New > Other ...
  6. Select "JavaFX Main Class".
  7. Enter a class name and click "Finish".
  8. Add some JavaFX code to the start method of your application.
  9. Set the selection on your application class and hit the "Run" toolbar item.
  10. Open the build.fxbuild file and fill in the following fields:
  11. Click on the "ant build.xml and run" link in the build section of the editor.
    • Vendor name
    • Application version

    Then, select the "Browse..." button next to the "Application class" entry.

  12. Expand the folders in the "Package Explorer" and double click your jar file.

Back to the top