Tagged Questions

2
votes
1answer
426 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
48 views

ANT script : how to exclude several files with ASDOC engine

I want to exclude several files (*_include.as) in my source project, to generate ASDOC : <target name="build-asdoc" depends="manifest"> <delete dir="${asdoc.dir}" /> <mkdir ...
1
vote
0answers
86 views

Desire to have ASDocs in swc work for Flash Professional CS5 help

So I checked out this site: http://gauravj.com/blog/2010/01/creating-swc-files-with-asdoc-comments/ which worked great. All of our documentation in Flash Builder now has full asDocs behind them. ...
0
votes
0answers
17 views

ASDOC Ant : error with DEFINE

[Flex4.5 - Windows XP] I defined all my define (string type) in asdoc target like this : <target name="build-asdoc" depends="setup-asdoc-dir, manifest"> <exec ...
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}" ...