java - is JavaFX Scene Builder available on linux support? -
i can't find javafx scene builder linux package on oracle official website http://www.oracle.com/technetwork/java/javafx/overview/index.html there solution can work on on linux plateforme ?
the mac os version works on linux, because scenebuilder 100% pure java, mostly. download macos dmg file here: http://www.oracle.com/technetwork/java/javafx/downloads/index.html
then extract 7-zip. it's compressed hfs file system.
$ mkdir javafx_scenebuilder $ 7z e -ojavafx_scenebuilder javafx_scenebuilder-1_0-macosx-universal.dmg now extract hfs partition:
$ cd javafx_scenebuilder $ 7z x 4.hfs this extract lots of files. you'll need "javafx scene builder 1.0/javafx scene builder 1.0.app/contents/java". can remove other files. start scenebuilder:
$ 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 there'll exception upon start saying "classnotfoundexception: com.sun.prism.es2.gl.x11.x11glfactory", it'll work anyway.
note you'll need jdk7u6 run it.
Comments
Post a Comment