HI, > why asdoc is broken.
In ParagraphElement.as there's a getter name the same as the private variable,
this causes asdoc to fail.
The getter it not actually used anywhere (that I could find) and is in the
tlf_internal namespace so I think it would be safe to rename it like so:
From:
tlf_internal function get _interactiveChildrenCount():int
{
return _interactiveChildrenCount;
}
To:
tlf_internal function get interactiveChildrenCount():int
{
return _interactiveChildrenCount;
}
Justin
