Since I do not enjoy typing in insanely long path names in command prompts, I decided to use FlashDevelop’s “ActionScript Documentation Generator”.
However, after I click “Generate”, the ASDoc exe gives the following error message:
C:\Programming\Flash\Projects\DebugText\Documentation>"C:\Program Files\Adobe\Adobe Flex SDK 3\bin\asdoc.exe" -doc-sources "C:\Programming\Flash\Projects\DebugText\Class\aRenberg\utils" -main-title "DebugText - lightweight, onscreen, visual tracing tool" -output "C:\Programming\Flash\Projects\DebugText\Documentation" -external-library-path "C:\Program Files\Adobe\Adobe Flex SDK 3\frameworks\libs\player\10\playerglobal.swc"
Loading configuration file C:\Program Files\Adobe\Adobe Flex SDK 3\frameworks\flex-config.xml
C:\Programming\Flash\Projects\DebugText\Class\aRenberg\utils\DebugText.as(81): col: 25 Error: Type was not found or was not a compile-time constant: Vector.
private var textArray:Vector.<String> = new Vector.<String>();
^
C:\Programming\Flash\Projects\DebugText\Class\aRenberg\utils\DebugText.as(81): col: 47 Error: Access of undefined property Vector.
private var textArray:Vector.<String> = new Vector.<String>();
^
C:\Programming\Flash\Projects\DebugText\Class\aRenberg\utils\DebugText.as(81): col: 47 Error: Access of undefined property Vector.
private var textArray:Vector.<String> = new Vector.<String>();
^
The code runs just fine when testing it, but when generating ASDoc, it gives me the error.
I tried adding that “-external-library-path” line by the recommendation of a blog entry, but it doesn’t seem to make a difference.
Google only gives me one other site, which doesn’t give me anything.
Any ideas?