<?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: ASDebugger 2.0: A real-time debugger and editor</title>
	<atom:link href="http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/</link>
	<description></description>
	<lastBuildDate>Sat, 19 Jun 2010 12:03:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Ids</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-1900</link>
		<dc:creator>Ids</dc:creator>
		<pubDate>Mon, 30 Mar 2009 10:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-1900</guid>
		<description>Hmm, did you download the latest versions of both the Debugger and the SWC? Seems like you&#039;re using the old debugger with the new SWC (which doesn&#039;t work)</description>
		<content:encoded><![CDATA[<p>Hmm, did you download the latest versions of both the Debugger and the SWC? Seems like you&#8217;re using the old debugger with the new SWC (which doesn&#8217;t work)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timo</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-1898</link>
		<dc:creator>Timo</dc:creator>
		<pubDate>Mon, 30 Mar 2009 09:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-1898</guid>
		<description>Thanks. Changing the import path, the error disappeared, but other one appeared.

I have a command in Main.as:
// t is a textField
ASDebugger.debug_prop(t);

When launching the Main.swf, the following error appears:

Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback debug_prop. error=ArgumentError: Error #1063: Argument count mismatch on ASDebugger/debug_prop(). Expected 1, got 3.</description>
		<content:encoded><![CDATA[<p>Thanks. Changing the import path, the error disappeared, but other one appeared.</p>
<p>I have a command in Main.as:<br />
// t is a textField<br />
ASDebugger.debug_prop(t);</p>
<p>When launching the Main.swf, the following error appears:</p>
<p>Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback debug_prop. error=ArgumentError: Error #1063: Argument count mismatch on ASDebugger/debug_prop(). Expected 1, got 3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ids</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-1896</link>
		<dc:creator>Ids</dc:creator>
		<pubDate>Mon, 30 Mar 2009 07:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-1896</guid>
		<description>You&#039;re using the wrong import path, it should be 
&lt;code&gt;import nl.flexperiments.debug.ASDebugger&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You&#8217;re using the wrong import path, it should be<br />
<code>import nl.flexperiments.debug.ASDebugger</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timo</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-1894</link>
		<dc:creator>Timo</dc:creator>
		<pubDate>Mon, 30 Mar 2009 06:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-1894</guid>
		<description>It tried to use ASDebugger 2 on Flex 3.

I have this like Main.as:
package {
 	import flash.display.Sprite;
 	import flash.text.*;
 	import flash.events.*;
  	import nl.flplibrary.debug.ASDebugger;
  	public class Main extends Sprite {
              public function Main():void {
              // something code
              }
              // other functions
        }
}
I tried to compile it with:
$ /path/to/flex/bin/mxmlc -library-path+=/path/to/swc/ASDebugger.swc Main.as

But the compiling fails due to error:
Error: Definition nl.flplibrary.debug:ASDebugger could not be found.

I putted the ASDebugger.swc to /path/to/swc/ASDebugger.swc.

What I&#039;m doing wrong?</description>
		<content:encoded><![CDATA[<p>It tried to use ASDebugger 2 on Flex 3.</p>
<p>I have this like Main.as:<br />
package {<br />
 	import flash.display.Sprite;<br />
 	import flash.text.*;<br />
 	import flash.events.*;<br />
  	import nl.flplibrary.debug.ASDebugger;<br />
  	public class Main extends Sprite {<br />
              public function Main():void {<br />
              // something code<br />
              }<br />
              // other functions<br />
        }<br />
}<br />
I tried to compile it with:<br />
$ /path/to/flex/bin/mxmlc -library-path+=/path/to/swc/ASDebugger.swc Main.as</p>
<p>But the compiling fails due to error:<br />
Error: Definition nl.flplibrary.debug:ASDebugger could not be found.</p>
<p>I putted the ASDebugger.swc to /path/to/swc/ASDebugger.swc.</p>
<p>What I&#8217;m doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-325</link>
		<dc:creator>john</dc:creator>
		<pubDate>Fri, 24 Oct 2008 10:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-325</guid>
		<description>I totally agree on that one! That would be &lt;strong&gt;awesome&lt;/strong&gt;! ;-)</description>
		<content:encoded><![CDATA[<p>I totally agree on that one! That would be <strong>awesome</strong>! <img src='http://labs.flexperiments.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed Haack</title>
		<link>http://labs.flexperiments.nl/asdebugger-20-a-real-time-debugger-and-editor/comment-page-1/#comment-188</link>
		<dc:creator>Ed Haack</dc:creator>
		<pubDate>Tue, 16 Sep 2008 22:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://labs.flexperiments.nl/?p=24#comment-188</guid>
		<description>Great job Ids!

Works like a champ... 

This would be a great plug-in/panel in FlashDevelop</description>
		<content:encoded><![CDATA[<p>Great job Ids!</p>
<p>Works like a champ&#8230; </p>
<p>This would be a great plug-in/panel in FlashDevelop</p>
]]></content:encoded>
	</item>
</channel>
</rss>
