Convert AS project to Flex project in Flex Builder - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:55:45Zhttp://stackoverflow.com/feeds/question/614011http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/614011/convert-as-project-to-flex-project-in-flex-builder0Convert AS project to Flex project in Flex Builderfinpingvin2009-03-05T08:52:08Z2009-08-29T16:06:26Z
<p>Is there an easy way of converting a Actionscript 3 project to a Flex project in Flex Builder? When i right click on the project and hover "Flex Project Nature", all options are greyed out</p>
http://stackoverflow.com/questions/614011/convert-as-project-to-flex-project-in-flex-builder/614042#6140422Answer by dirkgently for Convert AS project to Flex project in Flex Builderdirkgently2009-03-05T09:06:18Z2009-03-05T09:06:18Z<p>I haven't seen anything like that in FB3.</p>
<p>An AS3 project will lack quite a few of Flex project settings (e.g. template html). You are best served by creating an empty Flex project and adding the AS3 source to it -- drag and drop the folder(s) in the <code>src</code> folder of the Flex project. Alternatively, if it is a SWC you can add it using project settings.</p>
http://stackoverflow.com/questions/614011/convert-as-project-to-flex-project-in-flex-builder/620744#6207441Answer by joshtynjala for Convert AS project to Flex project in Flex Builderjoshtynjala2009-03-06T22:44:01Z2009-03-06T22:44:01Z<p>It's a little dirty, but it works.</p>
<ol>
<li>Delete the project in Flex Builder's Navigator.</li>
<li>It will ask if you want to delete the files from the file system too. Keep them.</li>
<li>Create a new Flex project in the same directory as the ActionScript project.</li>
</ol>
<p>The old files will be unchanged, but the new project will have the Flex Project nature. If a file already exists that has the same name as a file that the project wizard wants to create, the existing file will be not be deleted.</p>
<p>If you have custom command line arguments, source or library directories, or any other project-specific settings, you may have to reset them.</p>
<p>Just in case something goes wrong, be sure to back up your project directory first. I've never lost files when I've recreated a Flex Builder project, though.</p>
http://stackoverflow.com/questions/614011/convert-as-project-to-flex-project-in-flex-builder/621724#6217241Answer by Metal for Convert AS project to Flex project in Flex BuilderMetal2009-03-07T11:32:10Z2009-03-07T11:32:10Z<p>A few general steps to get there without losing your project settings:</p>
<ul>
<li>change your navigator filter to show all the files it's normally hiding from you.</li>
<li>look for a .project file at the root of your project. You'll see a <code><natures></code> tag in there.</li>
<li>create a new Flex project. open the .project file there, and compare the <code><natures></code> node.</li>
<li>copy the missing stuff to your current .project file.</li>
<li>you may need to close the project and reopen it, to nudge Flex Builder to parse your modified .project file</li>
<li>you'll probably have to click around the project properties to get things just right. At least under Flex Build Path -> Library Path, click on the "Add Flex SDK" button, since that's probably why you want to do this in the first place.</li>
</ul>
<p>If you're missing the templates/ stuff (not a big fan myself, but it's a nice crutch when you're just starting a project), go mess with one of the form fields under "HTML wrapper" under "Actionscript Compiler" in your project properties and apply the change, and the IDE will recreate the templates/ folder.</p>