Hai friends,

                 i want to Flex Ant Task source file and how to install
[migrate] read me file [steps].

plz send me urgent.

i have installed for Flex Data Services. Path C:\fds2\flex_sdk_2

next Flex Builder 2 installed path C:\WINDOWS\Downloaded Installations\Adobe
Flex Builder 2.0.1

Plz configration read me file and how to run the application

and How to run command line compiler.


On 10/13/07, dbronk <[EMAIL PROTECTED]> wrote:
>
>   We have just finished our first iteration and need to deploy what we
> have. But, for something that should be extremely simple, we are
> finding it very difficult and not finding much documentation other
> than the HelloWorld apps.
>
> Our app uses cairngorm-2.2.1.swc, flexlib.swc, and a couple other swc
> files. Running out of Eclipse with Flex Builder plugin works great.
> We have an ant file that does not seem to include everything. I
> figured out that I needed a compiler.include-libraries tag to include
> the swc files (I think they are included as the SWF file is now
> larger). But the app still does not work when deployed.
>
> It appears that I may have everything except the Cairngorm stuff.
> When my app launches I dispatch a CairngormEvent for initializing
> things. Well, it never comes back and I get the "Error: Key Error
> executing bizSearchService was not found in resource bundle
> CairngormMessages". So I'm not sure where I'm suppose to place teh
> CairngormMessages.properties file.
>
> Since I was having these issues I thought for this one time I'd just
> take the files from my Flex Builder bin directory. But they don't
> work either once deployed.
>
> So, I'm now stuck and hoping someone can give me some suggestions.
> I'm including my very basic ant script, but if anyone can tell me how
> to simply build and deploy and app that uses Cairngorm and other swc's
> (including what I'm suppose to do with the
> CairngormMessages.properties) I'd be greatful.
>
> Thanks,
> Dale
>
> Ant build.xml follows:
>
> <?xml version="1.0" encoding="utf-8"?>
> <!-- myMXMLCBuild.xml -->
> <project name="My App Builder" basedir="." default="main">
> <taskdef resource="flexTasks.tasks"
> classpath="${basedir}/flexTasks/lib/flexTasks.jar" />
> <property name="FLEX_HOME" value="C:/Program Files/Adobe/Flex
> Builder 2 Plug-in/Flex SDK 2"/>
> <property name="APP_ROOT" value="src"/>
> <property name="DEPLOY_DIR" value="c:/temp/tf"/>
>
> <target name="main" depends="clean">
> <mxmlc
> file="${APP_ROOT}/TargetFish.mxml"
> output="${DEPLOY_DIR}/TargetFish.swf"
> actionscript-file-encoding="UTF-8"
> keep-generated-actionscript="true"
> incremental="true"
> optimize="true">
>
> <!-- Get default compiler options. -->
> <load-config
> filename="${FLEX_HOME}/frameworks/flex- config.xml"/>
>
> <!-- List of path elements that form the roots of
> ActionScript class hierarchies. -->
> <source-path path-element="${FLEX_HOME}/frameworks" />
>
> <!-- List of SWC files or directories that contain SWC
> files. -->
> <compiler.library-path dir="${FLEX_HOME}/frameworks"
> append="true">
> <include name="libs" />
> <include name="../bundles/{locale}" />
> </compiler.library-path>
>
> <!-- List of SWC files to include in the SWF file. -->
> <!-- NOTE: #################### When I added this node, the
> SWF became larger. ################### -->
> < compiler.include-libraries dir="${basedir}/lib" append="true">
> <include name="*.swc" />
> </compiler.include-libraries>
>
> <!-- Set size of output SWF file. -->
> <default-size width="1024" height="720" />
>
> </mxmlc>
> </target>
> <target name="clean">
> <delete dir="${APP_ROOT}/generated"/>
> <delete>
> <fileset dir="${DEPLOY_DIR}" includes="TargetFish.swf"/>
> </delete>
> </target>
> </project>
>
> 
>



-- 
V.Kumar
Broadcast Engineering Consultants India Ltd,
New Delhi.
cell no : 09968063987

Reply via email to