After adding in to a project mxml application file from SVN, file was created by another developer. I was unable to launch this application.
There are 2 solutions: 1. Worst solution: recreate mxml application file and copy-paste content from old file; 2. Best solution: manually add application in to project configuration.
Steps for solution 2:
1. open project folder; (with some file manager (win explorer or similar) or in Flash Builder, but you will need to disable file filtering)
2. find .actionScriptProperties file.
3. add your mxml application in to section
<applications> </applications>
i.e. your old
<applications> </applications>
section:
<applications>
<application path="SomeApp.mxml"/>
</applications>
you new section:
<applications>
<application path="SomeApp.mxml"/>
<application path="NewAppFromSVN.mxml"/>
</applications>
4. save
5. goto Flash Builder? if project was opened - refresh it, if not just open it.
6. enjoy.
+