Wi-Fizzle.com - Putting the fizzle in Wi-Fi since 2005 .. (yes, this was a poor choice for a domain name)

#431
ASDoc documentation generation with Adobe Flash Builder, ActionScript 3, and Flex 4

Posted by dandriff on Monday June 28, 2010@10:35AM

Figuring out how to generate documention for ActionScript 3/Flex 4 code using Adobe's ASDoc tool from within Flash Builder has been quite a journey.

Helpful information:

  • All the text content in the comments must resolve to valid HTML. For example, <> does not validate with the SAX parser that ASDoc uses, so you would instead need to do &lt;&gt;. Also the character & by itself is invalid, use &amp; instead.

Things that didn't work:

  • The program called "ASDocr" wouldn't even install.
  • the instructions at undefined-type.com/2008/11/asdoc-with-flex-compiler/ were good, but for a
  • visiblearea.com/visdoc/
  • stackoverflow.com/questions/129405/can-i-use-doxygen-to-document-actionscript-code Basically, it's not a good idea to use DoxyGen for AS3. DoxyGen can word wonferfully for other things though..