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

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -