Reputation: 1926
I'm looking for an official Adobe page explaining the ins and outs of the various directories used in Flex Builder, namely html-template, bin-debug and bin-release.
There's a lot happening in these folder: folders get created and deleted, files get copied around automatically, or not, as seems to be the case with AIR apps. I'm looking for specific information on settings that control this behaviour, documented intention of the folder structure etc. In short, I'm trying to understand a part of Flex workflow that seems to work in unpredictable and completely undocumented ways.
I'm not looking for help in organizing project assets, I'm more curious about how the semi-automatic output folders work, and how to affect their configuration.
Upvotes: 2
Views: 1024
Reputation: 26
This link might be useful for you. http://livedocs.adobe.com/flex/3/html/wrapper_01.html
Upvotes: 1
Reputation: 413
I would check out these pages in the official documentation:
Flex Application Structure, Building Overview, and Application Deployment
The short, off-the-top-of-my-head answer would be:
The only other thing I would add is that Flex Builder tries to create the debug builds as quickly as possible, and so it only copies or compiles the files it thinks have changed...and sometimes it misses some. A Project->Clean... will force all the files to be re-copied/compiled into bin-debug.
Upvotes: 0
Reputation: 5338
I daresay you will not find this official documentation because Adobe considers this their buisiness—literally. Do read this December 2008 article “Flex best practices – Part 2: Development practices”; in the “Handling Assets” section you will see a recommendation for a folder structure that looks very close to what I think you are looking for...
Upvotes: 1