"tempdita" is what asdoc tool creates when using keep-xml="true" skip-xsl="true" "docs" is where FlashBuilder looks for the documentation within a swc.
Have you tried looking inside the swc with a zip tool, like 7zip? Should contain (at a minimum): xyz.swf catalog.xml docs The docs directory (in the swc) should contain a bunch of .xml files and "packages.dita" regards, Peter On Thu, Mar 15, 2012 at 10:51 AM, Justin Mclean <jus...@classsoftware.com>wrote: > Hi, > > > You doing this? > http://gauravj.com/blog/2010/01/creating-swc-files-with-asdoc-comments/ > > Basically yes. > > It's the xxx_rb.swc that is "fat" so I'm not sure how FB works out that it > needs to look into it for classes contained in xxx.swc. > > The contents of the temp directory look fine and the the _rb.swc increases > in size. > > Here's the ANT bits I'm using (modified from the existing Adobe build.xml > files). It's all a bit odd to me ie why the "tempdita" dir and why > prefix="docs"? > > <asdoc output="${FLEX_HOME}/tempDoc" lenient="true" failonerror="true" > keep-xml="true" skip-xsl="true" fork="true"> > <compiler.source-path path-element="${apache.dir}/src"/> > <doc-classes class="ApacheClasses"/> > <doc-namespaces uri="http://www.adobe.com/flex"/> > <namespace uri="http://www.adobe.com/flex" > manifest="${apache.dir}/manifest.xml"/> > <jvmarg line="-Xmx512m"/> > </asdoc> > > <zip destfile="${basedir}/locale/${locale}/apache_rb.swc" update="true"> > <zipfileset dir="${FLEX_HOME}/tempDoc/tempdita" prefix="docs"> > <include name="*.*"/> > <exclude name="ASDoc_Config.xml"/> > <exclude name="overviews.xml"/> > </zipfileset> > </zip> > > Thanks, > Justin