What determines which files are copied to the output folder when
compiling a project?
For example, I have src/main.mxml and it attempts to load an XML doc
using URLLoader:
------
var request : URLRequest = new URLRequest("data/config.xml");
var loader = new URLLoader;
loader.load(request);
------
When it compiles, I'd like to have my data folder copied to bin-debug.
I know I can do this using Ant but I was hoping that the property
found in the project properties:
Copy non-embedded files to output folder
would be useful. I can't seem to get anything other than the standard
folders to show up in bin-debug (history, etc.)
Any ideas?