2016-10-06 4 views
0

私はMac、Eclipse Mars 4.5.2、およびグルーンのScene Builder 8.2.0を使用しています。私の設定 - > JavaFXで実行可能ファイルのパスを設定すると、ランチャーは自分のフォルダにないscenebuilder-launcher.shファイルを探しています。Scenebuilder-8.2.0。 scenebuilder-launcher.shが見つからない

My Contents/MacOSフォルダにはlibpackager.dylibとSceneBuilder(exec)のみがあります。

バージョン8.2.0を使用する必要があります。

This is the message I receive

+0

OracleのSceneBuilder 2.0の最新バージョンをダウンロードし、scenebuilder-launcher.shを現在のフォルダにコピーすることで解決しました。 – Flippy

+0

私は同じ設定をしており、それは私のためにうまく動作します。 Preferences-> JavaFXの下で、SceneBuilderの実行可能ファイルに '/ Applications/SceneBuilder.app'と表示されていることを確認してください –

答えて

0

スクリプトの内容は、/ MacOSの/ scenebuilder-launcher.shは、IDE内からSceneBuilderを起動できるようにするなどのNetBeansやIntelliJのようなツールのために必要とされます。 SceneBuilder 2.0から抽出された:

#!/bin/sh 
# 
# This script is for use by tools such as NetBeans. 
# You are not supposed to call it directly. 
# 
# We computed bundle root path up to the ".app" included. 
APPLICATION=`echo $0 | sed -e 's#^\(.*\)/Contents.*#\1#'` 

open -a "$APPLICATION" "[email protected]" 

JavaFXの2シーンBuilderプラグインの更新がプッシュされており、このバグは、そのプラグイン(1.13.2)の最新バージョンで修正される必要があります。

関連する問題