[flexcoders] Re: Flex Builder and Ant

2008-03-28 Thread Shailesh Mangal
Why do you want to combine the two? We use flex builder for UI project
dev and debugging and Maven/ant for automated builds.

Shailesh
Now, Test Management http://www.getzephyr.com  , is a breeze

--- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote:

 Does anyone know how I can combine the use of Flex Builder and Ant to
 compile Flex/AIR projects?




Re: [flexcoders] Re: Flex Builder and Ant

2008-03-28 Thread Scott Melby
There are good reasons for doing GUI builds using Ant etc. as well.  I 
like to build all of my production releases from a stamped build, pulled 
fresh from my repository (to ensure no resources exist in the build dir 
structure that are not under version control).  I have blogged about 
using Ant with FB here http://blog.fastlanesw.com/?p=23... though it 
is not nearly complete and not updated since FB 2, it should get you 
started.


hth
Scott

Scott Melby
Founder, Fast Lane Software LLC
http://www.fastlanesw.com
http://blog.fastlanesw.com



Shailesh Mangal wrote:

Why do you want to combine the two? We use flex builder for UI project
dev and debugging and Maven/ant for automated builds.

Shailesh
Now, Test Management http://www.getzephyr.com  , is a breeze

--- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote:
  

Does anyone know how I can combine the use of Flex Builder and Ant to
compile Flex/AIR projects?





  


Re: [flexcoders] Re: Flex Builder and Ant

2008-03-28 Thread Weyert de Boer
Hi!

I have received a working apache build script from James Ward via the 
ApolloCoders list. Now I will see if I can somehow combine Flex Builder 
and this build script together.

Yes, mainly for the profiler and the debugging.


[flexcoders] Re: Flex Builder and Ant

2008-03-28 Thread ivan.division40
Hi,

The easiest way is to install ant on your machine and to configure it
as external tool.

Open External Tool Dialog and press New launch configuration.
Give it a name.
In Main tab:
Location type X:\apache-ant-1.7.0\bin\ant.bat,
Working Directory: X:\apache-ant-1.7.0\bin
Arguments: -buildfile ${project_loc}/build/build.xml

This will work for all of your projects if you put your build file
into build directory which is sitting in root of the project. :D
Note: You can edit arguments as you like, of course. The above will
build your default target.

Hope it helps,
Ivan


--- In flexcoders@yahoogroups.com, Weyert de Boer [EMAIL PROTECTED] wrote:

 Does anyone know how I can combine the use of Flex Builder and Ant to 
 compile Flex/AIR projects?