I’m working on a large Flash CS4 project with multiple swfs and want to consolidate my build process. Are ant/make overkill or have people out there successfully used them on large Flash projects?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m using ant right now for a project that needs to compile upwards of 10-20 separate components into their own respective swfs… also using it to deploy to a staging and production server. It’s kind of a pain to setup, but once it is it’s really easy with relatively fast compile times. Additionally, you can totally customize ant compile targets… for example, you might only want to compile only 3 of the 10 swfs 90% of the time, so you’d setup a build target to do just that. In my opinion it’s definitely worth it. Good luck!