ActionDoc is an Actionscript 2.0 Documentation tool similar to JavaDoc. It parses Actionscript classes and generates HTML files based on the structure of the classes and any comments embedded in the actionscript document.
To use ActionDoc, simply drag and drop ActionScript2.0 class files (.as) onto the application. After they have been parsed, click on "Build HTML." You will be asked to choose a directory. The documentation files will be saved in a subdirectory called "as2docs."
Documentation takes the form:
/**
* Describe the class, method, or property that proceeds
* this comment
*
* @param paramname A description of the method parameter
* @see "Non-Linked see tags in quotes"
* @see A link
* @see #paramOrMethod optionalLabel
* @see Class#paramOrMethod optionalLabel
* @see package.Class#paramOrMethod optionalLabel
* @returns A description of this method's return
*/
Currently ActionDoc only supports the @param, @returns, and @see tags (as well as descriptions). Support for other tags is coming shortly.