When I open scene builder using eclipse. it is not opening why I do not know. I got the following error. please give me a suggestion.
I showed installed path of scene builder in eclipse. window->preferences->JavaFX: /home/decoders/Downloads/JavaFXSceneBuilder2.0
Error:
failed to launch SceneBuilder. The error message was: can not run program "/home/decoders/Downloads/JavaFXSceneBuilder2.0": error=13, permission denied.
1 Answer
Permisssion denied most likely means, you have to allow the file to be executed.
Open a terminal and use
cd /home/decoders/Downloads/to change to the Downloads directory. Now type
chmod u+x JavaFXSceneBuilder2.0to allow the execution of that file.
2