i'm compiling *.fla
file via adobe flash professional cs5 *.swf
file on windows. build-process requires document compile errors or warnings logfiles.
- is there way save compile errors or warnings logfile on hard drive?
- is saved logfile maybe?
i couldn't find logfile yet , couldn't find way save compile errors.
thanks help!
edit: since doesn't seem attract anyone's attention, explain, why need this: flash compiled continuous integration (several times day). way no 1 (since continuous build doesn't involve person) notices output of adobe cs5 compiler. log used check build-errors , if there any, automatic continuous build process inform developers failed build , attach log in email, example.
maybe has idea integrate flash compiling , noticing compile errors in automatic build process continous integration?
if using ant there open source solution can started: https://code.google.com/p/fuelanttasks/ allows create ant macro this:
<taskdef resource="fuelanttasks.properties" classpath="fuelanttasks.jar" /> <!-- target shows how use fla task publish fla --> <target name="fla_publish"> <flash> <fla file="${src}/redsquare.fla" build="publish"/> <fla file="${src}/greensquare.fla" build="publish"/> </flash> </target>
it take care of launching flash ide, retrieving logs , displaying them through ant.
Comments
Post a Comment