vote up 0 vote down star

i am using mxmlc for building the flex projects using ant.how to use flex builder-> copy non embeded files to destination folder compiler option in ANT

flag

1 Answer

vote up 0 vote down

I'm not sure if this will help you out but when you check that option using flex builder it updates the .actionScriptProperties file:

<compiler additionalCompilerArguments="-locale en_US" copyDependentFiles="true">
<compilerSourcePath/>
</compiler>

setting the copyDependentFiles to true or false turns this on and off

You can all just copy the directory over but this doesn't remove the embedded files.

<copy todir="${SRC_DIR}/assets">
<fileset dir="${DEPLOY_DIR}">
</fileset>
</copy>
link|flag
i am not expecting this.i am asking how to use this copydependentfiles=true option in ant script – mike Jul 21 at 6:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.