asdoc pain
Running asdoc should have been a breeze. Just create an ant task which calls the asdoc executable with the given parameters and voila! Well, it was not. <target name="compile"> <exec executable="${asdoc}" failonerror="true"> <arg line="-doc-sources ${src.dir}"/> <arg line="-window-title "My Application""/> <arg line="-output ${asdoc.output}"/> </exec> </target> The task started by spilling 100 errors similar to: [exec] ...budgetImport.as(9): col: 1 Error: The public attribute can only be used inside a package. [exec] [exec] public var importing:Boolean = false; [exec] ^ [exec] [exec] ....