Reputation: 161
I need to convert complete .air project to flex project which can run in flash player in browser. Anybody do it?
Upvotes: 1
Views: 1328
Reputation: 161
Thanks for all. I've built my project by simple copying the files one-by-one and correct the errors.
Upvotes: 0
Reputation: 1
That depends on the air-project. I don't think you can get an air-project running as a flex app if it uses air-only features like directory/file selectors or the like ...
Upvotes: 0
Reputation: 9897
Look what's inside of .project file. I believe it is set here:
...
<natures>
<nature>com.adobe.flexbuilder.apollo.apollonature</nature>
<nature>com.adobe.flexbuilder.project.flexnature</nature>
<nature>com.adobe.flexbuilder.project.actionscriptnature</nature>
</natures>
Apollo is codename for AIR. If you remove this nature, project may turn into Flex-based. Never did it myself though, so you have to experiment.
Upvotes: 1