Skip to main content

Add JavaFX Platform in Netbeans

JavaFX Script is a Scripting Language designed by sun Microsystems, forming part of the this family of technologies on the Java Platform . JavaFX is used to create and deploy Rich Internet Applications which can run easily on any device.

To install JavaFX script user need to install particular SDK version with JavaFX.

To add this platform into Netbeans user need to perform following steps :

  1. Click on Tools > netbeans Platforms or Java Platforms > add Platform .

  2. Select the path of JavaFX SDK .

If the JavaFX program still shows error then follow the steps shown below :

  1. Right click on the project .

  2. Go to properties .

  3. Select libraries and in the Compile tab Click on Add JAR file.

  4. Browse to the jfxrt.jar file .E.g. my path is “C:Program FilesOracleJavaFX 2.2 SDKrtlib jfxrt.jar”.

Some components provided by this platform are-

  1. SDK - Which includes graphics, web services and text libraries.

  2.  Net-beans IDE - Which provide drag-and-drop palette through which we can add transformations, effects as well as animations. 

  3. Scene Builder - FXML file is created.

  4. Some tools and plugins for creative tools.

Now you can run any JavaFX file after cleaning the project. If you have any more doubts regarding this platform you can visit its official site javafx.com

Comments

Popular posts from this blog

Facebook Login In PHP

As we all know Time is Money. When there's a long form on your site for registration you could sometimes lose your visitors. To make this registration step a success, adding a small social login button to your site may cut down lot of burden on visitors side and will help you in getting more attention on your data rather than wasting time on the lengthy registration process. By doing so visitor will be glad to see that you care for their precious time.   What do you think will there be anyone in this small world who is not having a Facebook account? According to recent stats 1 in every 13 person in this world is using facebook.

USB Boot Procedure

Simple step-by-step solution to create a bootable usb in cmd: 1)   Take a pen drive of more than 4gb . 2)   Now the most important step is to open cmd from start->search program and files->type cmd . 3)   Now in the new window, type diskpart and hit enter. 4)   Type the command list disk . Now, note the disk which have size identical to that of your pen drive. eg. disk 1. 5)   Type the command select disk 1 . 6)   Then type clean and hit enter. 7)   Just type create partition primary and press enter. 8)  Then run the command list partition . 9)  Type select partition 1 and hit enter. 10) Format it using the command format fs=ntfs . 11) Type the commands active , assign and exit in sequence. Now just copy all the files from Boot-able disc of  windows 7 to the pen drive and your pen drive is ready to be used as a boot-able device.