Tagged Questions
4
votes
5answers
3k views
ASDoc through the Flex Builder UI?
Is there any way to run ASDoc on your project via the Flex Builder UI? Or, is there a good (preferably free) plugin that will do so?
If there is no UI for it, does someone have a link to a tutorial ...
2
votes
2answers
209 views
Is it possible to include example mxml in your ASDoc?
Is it possible with ASDoc to include example MXML code in your comment?
/**
* @example This should be example code
* <listing version="3.0">
* <mx:Application ...
2
votes
3answers
969 views
ASDoc compiling error in Flash Builder 4
I can't seem to figure out why i continue getting this error every-time I try to compile ASDoc in Flash Builder 4.
I did succeed in ASDoc creating a asdoc-output folder but it is incomplete. There is ...
2
votes
1answer
877 views
problems generating ASDoc
I am using ASDocr, which is an Adobe AIR application GUI interface for the command-line Flex asdoc documentation generator. My class uses several external libraries and it is generating a 1046 error ...
2
votes
2answers
649 views
Using ASDoc with Bindable metatag and mxml
I am creating the documentation of my flex project using ASDoc and having some issues with the bindable metatag.
ASDoc doesn't document public Bindable values unless the Bindable tag has an event ...
2
votes
1answer
425 views
Where does ASDoc get its intrinsic class definitions from?
I mean that of the built-in ECMA objects: String, Number, Object, Function, RegExp, Error, Boolean, etc..
1
vote
1answer
135 views
Add ASDoc documentation to Flex Builder help
Is there any way to add my project documentation, generated with ASDoc, to the Flex Builder dynamic help?
Or not necessarily to the dynamic help, but somewhere so that Flex Builder searches it when I ...
1
vote
1answer
404 views
Asdoc throwing errors for MXML component that includes a separate .as file
I have an MXML component that includes a .as file with
<fx:Script source="myfile.as" />
Running asdoc throws a whole bunch of errors like
"Error: The private attribute may be used only on ...
1
vote
1answer
96 views
How to force asdoc run in English
My operation system is Window XP in Chinese.
I'm running flex sdk > asdoc in command line. Asdoc picks up the system default language.
How can I force it to be run in English language environment?
1
vote
1answer
427 views
How do I troubleshoot an “Error #1090” trying to generate ASDoc?
I've got a reasonably large Flex project and I'm trying to generate ASDoc documentation for it. When I run asdoc, it gives me this error:
An unexpected error occurred.
Error #1090: XML parser ...
1
vote
1answer
236 views
1
vote
4answers
2k views
Flex 3 ASDocs Library Issue
We've been attempting to compile ASDocs against a Flex 3 Library Project. Our problem is that ASDocs refuses to recognize any custom mxml component that is both created and used within the library.
...
0
votes
0answers
80 views
some asdoc issues concerning arguments in flashbuilder 4.5 using external tools
i have written my own logging class in combination with swiz.
I have some problems to generate a asdoc and hope somebody can help me.
i have configured the asdoc via run->external tools and set up a ...
0
votes
0answers
31 views
How can I run Asdoc in Flex 4.0.0 against Flex SDK 3.1 and generate documentation for MXML classes?
I understand that asdoc within Flex 4 generates documentation for MXML files but the asdoc in earlier versions don't. I have a project that needs to be compiled using Flex SDK 3.1.0 and I would like ...
0
votes
1answer
56 views
How we can add AsDoc comments to a component?
I have a canvas based component, so when I check the asdoc comments, they have inherited comments of Canvas. can we remove that inherited comments, and add our own AsDoc comments..
0
votes
1answer
492 views
ASDoc Generation through Ant
I have an ant script to compile and generate an AIR file, and it runs well. Now, I am trying asDocs also into the ant script in order to auto generate documentation whenever I am generating a new AIR ...
0
votes
1answer
196 views
Adding XML to asdoc function comments in flex?
How do you add sample xml to asdoc function/class comments in Flex? They can obviously be added, but they wont show in the hover asdoc comments in Flash Builder 4.
/**
* Generates a ChangeAccount in ...
0
votes
0answers
243 views
How to add ASDoc documentation to the Flex 4.1 SDK in Eclipse/Flash Builder
I am using the Flex 4.1 SDK and the new Flash Builder Burrito as a dropin to my eclipse installation.
I do not get any ASDoc documentation with basic ActionScript classes, neither upon hovering a ...
0
votes
3answers
174 views
How do I write a comment for an item I defined in flex?
I want to add a comment to some elements in a Flex document, and process the comments using ASDoc. I can easily do this for the script portion, but I end up with a ton of ugly "This property can be ...
0
votes
3answers
261 views
flex/ actionscript comments
cannot get the comments to show in actionscript file when running asdoc.. is this a known bug?
[Bindable]
/** test comment */
public var currentSearchTextValue:String;
does not show anything in the ...
0
votes
1answer
709 views
Can ASDoc in Flex create documentation for packages/namespaces?
As the title says - is it possible to document my ActionScript packages / namespaces using the ASDoc comments and the included asdoc command line tool?
0
votes
2answers
1k views
How can ASDoc Ant Task work without -source-path option?
I am tring to get the ASDoc Ant task to work:
<target name="asdoc" depends="compile">
<mkdir dir="${dist_asdocs}"/>
<asdoc
docSources="${srcdir}"
output="${dist_asdocs}"
...