
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ant Build.xml for ASDocs Generation in Eclipse</title>
	<atom:link href="http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/</link>
	<description>flash examples and development for the web, PSP Flash Player, Mobile flash lite player. All mixed up with some random thoughts, photos, images and poetic words</description>
	<lastBuildDate>Mon, 15 Aug 2011 21:10:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: davebansal</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-92708</link>
		<dc:creator>davebansal</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-92708</guid>
		<description>was looking something exactly like this. initially i kept getting cairgorm and &quot;type not found&quot; errors. I resolved those by putting Cairngorm.swc under ${frameworks}/lib and by changing the  in flex-config.xml. And now it works amazingly well. Thanks</description>
		<content:encoded><![CDATA[<p>was looking something exactly like this. initially i kept getting cairgorm and &#8220;type not found&#8221; errors. I resolved those by putting Cairngorm.swc under ${frameworks}/lib and by changing the  in flex-config.xml. And now it works amazingly well. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasonm</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-52232</link>
		<dc:creator>Jasonm</dc:creator>
		<pubDate>Tue, 21 Aug 2007 15:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-52232</guid>
		<description>I&#039;d strongly recommend splitting the property declarations off into a .properties file...

--code--8

(line 4 of the original)</description>
		<content:encoded><![CDATA[<p>I&#8217;d strongly recommend splitting the property declarations off into a .properties file&#8230;</p>
<p>&#8211;code&#8211;8</p>
<p>(line 4 of the original)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Makinson</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-35731</link>
		<dc:creator>Shawn Makinson</dc:creator>
		<pubDate>Thu, 17 May 2007 21:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-35731</guid>
		<description>I just spent some time dealing with this on my mac. I&#039;m sure I will run into more things later, but for now it works and here&#039;s how. I had to deal with spaces in the path to my flex install, so to work around that I made a simlink in / to point to the flex sdk folder.

ln -s /Applications/Adobe\ Flex\ Builder\ 2/Flex\ SDK\ 2/ flex_sdk

Here is the build file I ended up with. I know nothing about ant so thatnks to the others who got me started, I never expected such an ordeal. Now I can right click from flexbuilder and choose run as ant. Note that first you need to do step 2 of this:

http://www.levelofindustry.com/display/ShowJournal?moduleId=676235&amp;categoryId=108635

and this:

http://www.peterelst.com/blog/2006/09/03/flex-builder-2-ant-support/


&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;project name=&quot;Documentation&quot; default=&quot;asdocs&quot;&gt;
	
	&lt;!--
	Note that /flex_frameworks/ is a simlink I setup to point to the actual Flex sdk install since 
	there are issues with spaces in the command line arguments.
	--&gt;
	
	&lt;property name=&quot;flex&quot; value=&quot;/flex_sdk&quot;/&gt;
	&lt;property name=&quot;templates&quot; value=&quot;${flex}/asdoc/templates&quot;/&gt;
	&lt;property name=&quot;doc-sources&quot; value=&quot;../com&quot;/&gt;
	&lt;property name=&quot;output&quot; value=&quot;../docs&quot;/&gt;
	
	&lt;target name=&quot;asdocs&quot;&gt;
		&lt;!-- Clean out the contents of the doc directory, without deleting &quot;docs&quot; --&gt;
		&lt;delete includeemptydirs=&quot;true&quot;&gt;
			&lt;fileset dir=&quot;${output}&quot; includes=&quot;**/*&quot; /&gt;
		&lt;/delete&gt;
		
		&lt;exec executable=&apos;${flex}/bin/asdoc&apos;&gt;
			&lt;arg value=&apos;-library-path /flex_sdk/frameworks/libs&apos;/&gt;
			&lt;arg value=&apos;-library-path /flex_sdk/frameworks/locale/en_US&apos;/&gt;
			&lt;arg value=&apos;-library-path /local_actionscript_library/flex-lib/1.7&apos;/&gt;
			&lt;arg value=&apos;-library-path /local_actionscript_library/djangoamf/s2flex2-components/target/swc&apos;/&gt;
			&lt;arg value=&apos;-library-path /local_actionscript_library/cairngorm/2.2&apos;/&gt;
			&lt;arg value=&apos;-doc-sources ${doc-sources}&apos;/&gt;
			&lt;arg value=&apos;-output ${output}&apos;/&gt;
			&lt;arg value=&apos;-templates-path ${templates}&apos;/&gt;
		&lt;/exec&gt;
	&lt;/target&gt;
&lt;/project&gt;


I hope this helps other mac users. If you find anything to further improve upon this, please send me an email.</description>
		<content:encoded><![CDATA[<p>I just spent some time dealing with this on my mac. I&#8217;m sure I will run into more things later, but for now it works and here&#8217;s how. I had to deal with spaces in the path to my flex install, so to work around that I made a simlink in / to point to the flex sdk folder.</p>
<p>ln -s /Applications/Adobe\ Flex\ Builder\ 2/Flex\ SDK\ 2/ flex_sdk</p>
<p>Here is the build file I ended up with. I know nothing about ant so thatnks to the others who got me started, I never expected such an ordeal. Now I can right click from flexbuilder and choose run as ant. Note that first you need to do step 2 of this:</p>
<p><a href="http://www.levelofindustry.com/display/ShowJournal?moduleId=676235&#038;categoryId=108635" rel="nofollow">http://www.levelofindustry.com/display/ShowJournal?moduleId=676235&#038;categoryId=108635</a></p>
<p>and this:</p>
<p><a href="http://www.peterelst.com/blog/2006/09/03/flex-builder-2-ant-support/" rel="nofollow">http://www.peterelst.com/blog/2006/09/03/flex-builder-2-ant-support/</a></p>
<p>&lt;?xml version=&quot;1.0&quot;?&gt;<br />
&lt;project name=&quot;Documentation&quot; default=&quot;asdocs&quot;&gt;</p>
<p>	&lt;!&#8211;<br />
	Note that /flex_frameworks/ is a simlink I setup to point to the actual Flex sdk install since<br />
	there are issues with spaces in the command line arguments.<br />
	&#8211;&gt;</p>
<p>	&lt;property name=&quot;flex&quot; value=&quot;/flex_sdk&quot;/&gt;<br />
	&lt;property name=&quot;templates&quot; value=&quot;${flex}/asdoc/templates&quot;/&gt;<br />
	&lt;property name=&quot;doc-sources&quot; value=&quot;../com&quot;/&gt;<br />
	&lt;property name=&quot;output&quot; value=&quot;../docs&quot;/&gt;</p>
<p>	&lt;target name=&quot;asdocs&quot;&gt;<br />
		&lt;!&#8211; Clean out the contents of the doc directory, without deleting &quot;docs&quot; &#8211;&gt;<br />
		&lt;delete includeemptydirs=&quot;true&quot;&gt;<br />
			&lt;fileset dir=&quot;${output}&quot; includes=&quot;**/*&quot; /&gt;<br />
		&lt;/delete&gt;</p>
<p>		&lt;exec executable=&apos;${flex}/bin/asdoc&apos;&gt;<br />
			&lt;arg value=&apos;-library-path /flex_sdk/frameworks/libs&apos;/&gt;<br />
			&lt;arg value=&apos;-library-path /flex_sdk/frameworks/locale/en_US&apos;/&gt;<br />
			&lt;arg value=&apos;-library-path /local_actionscript_library/flex-lib/1.7&apos;/&gt;<br />
			&lt;arg value=&apos;-library-path /local_actionscript_library/djangoamf/s2flex2-components/target/swc&apos;/&gt;<br />
			&lt;arg value=&apos;-library-path /local_actionscript_library/cairngorm/2.2&apos;/&gt;<br />
			&lt;arg value=&apos;-doc-sources ${doc-sources}&apos;/&gt;<br />
			&lt;arg value=&apos;-output ${output}&apos;/&gt;<br />
			&lt;arg value=&apos;-templates-path ${templates}&apos;/&gt;<br />
		&lt;/exec&gt;<br />
	&lt;/target&gt;<br />
&lt;/project&gt;</p>
<p>I hope this helps other mac users. If you find anything to further improve upon this, please send me an email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thijs</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-25759</link>
		<dc:creator>Thijs</dc:creator>
		<pubDate>Fri, 23 Mar 2007 13:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-25759</guid>
		<description>I&#039;m getting the same &quot;Exception in thread â€œmainâ€ java.lang.NoClassDefFoundError: Flex&quot; error on Mac OSX. :(</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the same &#8220;Exception in thread â€œmainâ€ java.lang.NoClassDefFoundError: Flex&#8221; error on Mac OSX. <img src='http://blog.bittube.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-25536</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 21 Mar 2007 19:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-25536</guid>
		<description>I haven&#039;t actually tried running this since I switched to a mac I have to confess. I wonder if it may be something specific to the formating of Mac File structures? I will try and find some time to look at this and see if I cant find an answer.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t actually tried running this since I switched to a mac I have to confess. I wonder if it may be something specific to the formating of Mac File structures? I will try and find some time to look at this and see if I cant find an answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-25443</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 21 Mar 2007 03:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-25443</guid>
		<description>I&#039;m trying to get this working, but I keep getting the following error:

Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: Flex

Any ideas? I&#039;m using FB2 on OSX. I&#039;ve got the paths in the XML changed to point to asdoc and my projects, but it&#039;s still throwing these errors.</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to get this working, but I keep getting the following error:</p>
<p>Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: Flex</p>
<p>Any ideas? I&#8217;m using FB2 on OSX. I&#8217;ve got the paths in the XML changed to point to asdoc and my projects, but it&#8217;s still throwing these errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ant and ASDoc</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-21792</link>
		<dc:creator>Ant and ASDoc</dc:creator>
		<pubDate>Wed, 21 Feb 2007 12:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-21792</guid>
		<description>[...] At the hand of the Ant script made by Darron Schall and the one by Dave Williamson I put together my own. [...]</description>
		<content:encoded><![CDATA[<p>[...] At the hand of the Ant script made by Darron Schall and the one by Dave Williamson I put together my own. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dong</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-18996</link>
		<dc:creator>dong</dc:creator>
		<pubDate>Thu, 01 Feb 2007 05:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-18996</guid>
		<description>it might be good but I can&#039;t understand about that.
how can I connect with Eclipse ?
can you descript more detil?</description>
		<content:encoded><![CDATA[<p>it might be good but I can&#8217;t understand about that.<br />
how can I connect with Eclipse ?<br />
can you descript more detil?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webdevotion</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-12290</link>
		<dc:creator>Webdevotion</dc:creator>
		<pubDate>Wed, 13 Dec 2006 11:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-12290</guid>
		<description>Thank you !</description>
		<content:encoded><![CDATA[<p>Thank you !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pardini</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-5188</link>
		<dc:creator>Pardini</dc:creator>
		<pubDate>Mon, 21 Aug 2006 14:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-5188</guid>
		<description>This was very useful, thank you.</description>
		<content:encoded><![CDATA[<p>This was very useful, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/comment-page-1/#comment-4837</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 15 Aug 2006 22:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/#comment-4837</guid>
		<description>Very nice, thanks for posting this!</description>
		<content:encoded><![CDATA[<p>Very nice, thanks for posting this!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

