<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>rel=me &#187; asproject</title>
	<atom:link href="http://rel.me/t/asproject/feed/" rel="self" type="application/rss+xml" />
	<link>http://rel.me</link>
	<description>programming, objective-c, cocoa, iphone, c</description>
	<lastBuildDate>Wed, 01 Feb 2012 07:26:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ASProject now Sprouts</title>
		<link>http://rel.me/2007/06/14/asproject-now-sprouts/</link>
		<comments>http://rel.me/2007/06/14/asproject-now-sprouts/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 01:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[asproject]]></category>
		<category><![CDATA[asunit]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">/2007/06/14/asproject-now-sprouts</guid>
		<description><![CDATA[&#34;I introduced AsProject in April and have since been redesigning it under a new, much more manageable project called Sprouts.&#34; http://www.asserttrue.com/articles/2007/06/13/announcing-sprouts-was-asproject]]></description>
			<content:encoded><![CDATA[<blockquote><p>
&quot;I introduced AsProject in April and have since been redesigning it under a new, much more manageable project called Sprouts.&quot;
</p></blockquote>
<p><a href="http://www.asserttrue.com/articles/2007/06/13/announcing-sprouts-was-asproject">http://www.asserttrue.com/articles/2007/06/13/announcing-sprouts-was-asproject</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rel.me/2007/06/14/asproject-now-sprouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASProject and Flash debugging to Firebug console</title>
		<link>http://rel.me/2007/04/12/asproject-and-flash-debugging-to-firebug-console/</link>
		<comments>http://rel.me/2007/04/12/asproject-and-flash-debugging-to-firebug-console/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 02:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[asproject]]></category>
		<category><![CDATA[asunit]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">/2007/09/03/asproject-and-flash-debugging-to-firebug-console</guid>
		<description><![CDATA[Publishing, testing, and running Actionscript projects is a pain. &#8220;AsProject automates a variety of tasks including the creation of projects, classes, test cases, test suites, and swfmill libraries. It automates the download, installation and configuration of the debug flash player and many open source tools. AsProject also includes sophisticated build tools written in rake to [...]]]></description>
			<content:encoded><![CDATA[<p>Publishing, testing, and running Actionscript projects is a pain.</p>
<blockquote><p>
&#8220;AsProject automates a variety of tasks including the creation of projects, classes, test cases, test suites, and swfmill libraries. It automates the download, installation and configuration of the debug flash player and many open source tools. AsProject also includes sophisticated build tools written in rake to automate build processes.&#8221;
</p></blockquote>
<p><a href="http://www.asserttrue.com/articles/2007/04/04/introducing-asproject">Video demo</a> or <a href="http://code.google.com/p/asproject/">Project page</a></p>
<table class="CodeRay">
<tr>
<td class="line_numbers" title="click to toggle" onclick="with (this.firstChild.style) { display = (display == '') ? 'none' : '' }">
<pre><tt>
</tt></pre>
</td>
<td class="code">
<pre ondblclick="with (this.style) { overflow = (overflow == 'auto' || overflow == '') ? 'visible' : 'auto' }">gem install asproject</pre>
</td>
</tr>
</table>
<p>Also, a friend <a href="http://www.justsuppose.com/">Corey</a> pointed out that you can debug flash using Actionscript ExternalInterface to log to Firebug console.log instead of using ASUnit&#8217;s debug console. In your actionscript: </p>
<table class="CodeRay">
<tr>
<td class="line_numbers" title="click to toggle" onclick="with (this.firstChild.style) { display = (display == '') ? 'none' : '' }">
<pre><tt>
</tt></pre>
</td>
<td class="code">
<pre ondblclick="with (this.style) { overflow = (overflow == 'auto' || overflow == '') ? 'visible' : 'auto' }"> ExternalInterface.call(&quot;console.log&quot;, &quot;FLASH: &quot; + s);</pre>
</td>
</tr>
</table>
<p>And make sure to allowScriptAccess.</p>
<table class="CodeRay">
<tr>
<td class="line_numbers" title="click to toggle" onclick="with (this.firstChild.style) { display = (display == '') ? 'none' : '' }">
<pre>1<tt>
</tt>2<tt>
</tt>3<tt>
</tt></pre>
</td>
<td class="code">
<pre ondblclick="with (this.style) { overflow = (overflow == 'auto' || overflow == '') ? 'visible' : 'auto' }">var so = new SWFObject(&quot;flash/xxx.swf&quot;, &quot;myswf&quot;, &quot;680&quot;, &quot;200&quot;, &quot;8&quot;, &quot;#FFFFFF&quot;);<tt>
</tt> so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);<tt>
</tt> so.write(&quot;xxx&quot;);</pre>
</td>
</tr>
</table>
<p>And you could call any javascript from it. <a href="http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&#038;file=00002200.html">ExternalInterface </a> is a replacement for fscommand. I don&#8217;t remember but I don&#8217;t think ExternalInterface works in all browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://rel.me/2007/04/12/asproject-and-flash-debugging-to-firebug-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

