I'm trying to use ASDoc to generate code for two projects, one runs in AIR, the other in Flash. I can create an ASDoc config file that works for each one individually, but when I combine them, I get errors about contextMenu and File, because AIR and Flash have separate APIs for them.
My config:
<flex-config>
<doc-classes>
<class>FlashProject</class>
<class>AIRProject</class>
</doc-classes>
<compiler>
<external-library-path>
<path-element>${flexlib}\libs\player\10.0\playerglobal.swc</path-element>
<path-element>${flexlib}\libs\air\airglobal.swc</path-element>
</external-library-path>
<library-path>
<path-element>${flexlib}\libs</path-element>
<path-element>${flexlib}\libs\air</path-element>
<path-element>${flexlib}\locale\{locale}</path-element>
</library-path>
<source-path>
<path-element>FlashProject\src</path-element>
<path-element>AIRProject\src</path-element>
</source-path>
</compiler>
</flex-config>