Moonshine is a free and open source middleweight IDE built with ActionScript 3 for ActionScript 3, Apache Flex®, Apache Royale™, and Feathers development, with Cloud and Desktop support.
I just created a new ActionScript project, and I want to add a library path in the project settings. I created a libs folder in my project, and I added a .swc file. When I click the Browse dir button, the dialog opens to the last folder that I selected in a previous session of Moonshine (in my case, it was the location of the JDK used for code intelligence). Now, I need to find my project folder manually before I can add the libs folder to the library path.
This isn't a big deal, but it would be a better user experience if file/folder pickers in the project settings defaulted to opening in the project's root folder instead. I think it can be done by setting the file's path before calling browseForDirectory() or browseForOpen().
var file:File = new File(projectPath);
file.browseForDirectory();
I just created a new ActionScript project, and I want to add a library path in the project settings. I created a libs folder in my project, and I added a .swc file. When I click the Browse dir button, the dialog opens to the last folder that I selected in a previous session of Moonshine (in my case, it was the location of the JDK used for code intelligence). Now, I need to find my project folder manually before I can add the libs folder to the library path.
This isn't a big deal, but it would be a better user experience if file/folder pickers in the project settings defaulted to opening in the project's root folder instead. I think it can be done by setting the file's path before calling browseForDirectory() or browseForOpen().