You mean his old web-based 2.0 app? That won't give me what I need - the standard, familiar set of documentation.
There are a couple of things that led me to this position. First was an error thrown when I used the Flex 3 compiler:
Loading configuration file C:\Program Files (x86)\Adobe\Flex SDK\frameworks\flex-config.xml
G:\workspace\xxxx xxxx\src\com\greensock\plugins\EndVectorPlugin.as(65): col: 30 Error: Type was not found or was not a compile-time constant: Vector.
public function init(start:Vector, end:Vector):void {
Flex 3, apparently,
does not like Vector. Yes, asdoc does include the -exclude command, but this only prevents files from being output. They are still read, with the result that Vector fucks up my shit despite the fact that it is not used in my app.
So, per that blog post, I installed the Flex 4 SDK. The good news: I no longer get that error. The bad news is that I get a whole new set along the lines of:
Loading configuration file C:\Program Files (x86)\Adobe\Flex SDK\frameworks\flex-config.xml
G:\workspace\AS3 Libraries\as3corelib\com\adobe\air\logging\FileTarget.as(53): col: 34 Error: The definition of base class LineFormattedTarget was not found.
public class FileTarget extends LineFormattedTarget
So throw in a few more hours of trial and error and I finally get it to the point where it's "simply" throwing errors indicating that it expects the comments within the classes to follow a particular format (I'm assuming HTML).
The thing that pisses me off is that I'm not even doing anything with Air or Flex. All I want is to generate the documentation for a pure AS3 app. I should not have had to jump through those hoops to get to this point, and I'm sure as hell not going to go back through and reformat the comments for my libraries AND those from third parties (e.g. greensock, as3corelib, etc.)
:pissed: