ASDoc arguments

Ran into a few “quirks” using ASDoc, so needed to tweak my arguments, firstly to include libraries, and secondly to surpress some odd errors, such as: Error: Interface method get creatingContentPane in namespace mx.core:IContainer not implemented This error was coming from an empty MXML component that extends Canvas… no code or children…. weird. So anyway, [...]

Generating ASDoc via Flex Builder

More than once I have looked for the ultimate solution to generating ASDocs, have tried ANT builds, third-party plugins etc. Little did i realise there was a much easier option, just use External Tools as outlined here. From what i can tell you can only document comments in .as files or inside the SCRIPT tag [...]

Flex: IDE Factory pimps Flex Builder 3

Damn, heres the plugin i have been waiting for! Features include: Package explorer view (includes expanded view of .swc files) Cairngorm explorer view. Code metrics explorer with interesting stats such as the total number of code lines! Project wide code formatting. One click ASDoc and FlexUnit test creation. Plus a number of handy Cairngorm generation [...]

Flex: ASDoc and Bindable properties

Is it just me, or does adding the [Bindable] metadata tag to a public property confuse ASDoc in someway? Without the tag my property is documented as expected, but with it – nada… A bit of googlin revealed this was documented as a bug in 2006, surely fixed by now?