I'm using Flash Builder 4.6, and I just started a new project yesterday. This time I've had the option to not use the default package, defining my own instead and putting the source code in there. However I want to keep the images outside of the package and inside their own folder, called "images". Basically when I deploy this, I want the images folder to be in the same folder as the .swf, and I want the .swf to be able to access them through the relative path "images/". But if I try to put that folder in the same spot as the source files in the IDE, FB 4.6 just turns it into a sub-package of its own, meaning that using the path "images/" will only work once the deployment is made.
In other IDEs, I could just go in and change the working directory, set the images folder much closer the root of the project, and still have that relative path work both from the IDE and upon deployment. However in FB 4.6, I don't see a way to do this.
Is there a way? If so how? If not what would be the best way to handle this? I don't want my images being mixed in with my source files, I don't want to change the path in the source every time I deploy, and I don't want to have to read from a config file to get the path or anything overly complicated like that. Thanks!