The MAC OS version also runs on Linux, because SceneBuilder is 100% pure Java, basically. Download the Mac OS DMG file here: http://www.oracle.com/technetwork/java/javafx/downloads/index.html
Then extract using 7-zip. This is a compressed HFS file system.
$ mkdir javafx_scenebuilder $ 7z e -ojavafx_scenebuilder javafx_scenebuilder-1_0-macosx-universal.dmg
Now extract the HFS partition:
$ cd javafx_scenebuilder $ 7z x 4.hfs
This will extract a large number of files. You will need only "JavaFX Scene Builder 1.0 / JavaFX Scene Builder 1.0.app/Contents/Java". You can delete all other files. Scenebuilder Start:
$ cd "JavaFX Scene Builder 1.0/JavaFX Scene Builder 1.0.app/Contents/Java" $ java -cp javafx-beans-dt.jar:javafx-designtime.jar:jfxrt.jar:SceneBuilder.jar com.oracle.javafx.authoring.Main
An exception will appear if you start to say something about "ClassNotFoundException: com.sun.prism.es2.gl.x11.X11GLFactory", but it will still work.
Please note that you will need JDK7u6 to run it.
source share