Quickly generating AsDoc
Tuesday, June 17th, 2008For ease of use i have a small batch file to generate the documentation for my ActionScript projects. It’s definitely nothing special, but if you struggle with the asdoc syntax and you just want a quick solution, here it is:
@echo off
set asdoc_bin=”E:\projects\flex_sdk_3\bin\asdoc.exe”
set aswing_path=”E:\projects\aswing\trunk\AsWing\bin”
%asdoc_bin% -doc-sources org\dirty_motherfucker\. -main-title “My ActionScript Project” -output “doc” -compiler.library-path %aswing_path%
pause
It also points [...]