<?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"
	>

<channel>
	<title>trace(this).com</title>
	<atom:link href="http://blog.madebyderek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.madebyderek.com</link>
	<description>Flash, SWF Studio, and the world around me</description>
	<pubDate>Thu, 10 Apr 2008 14:51:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Sorry about the MXNA spewage</title>
		<link>http://blog.madebyderek.com/archives/2008/03/05/sorry-about-the-mxna-spewage/</link>
		<comments>http://blog.madebyderek.com/archives/2008/03/05/sorry-about-the-mxna-spewage/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 15:11:57 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/archives/2008/03/05/sorry-about-the-mxna-spewage/</guid>
		<description><![CDATA[
]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2008/03/05/sorry-about-the-mxna-spewage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Proxy/XML + [] = broken</title>
		<link>http://blog.madebyderek.com/archives/2008/03/04/proxyxml-broken/</link>
		<comments>http://blog.madebyderek.com/archives/2008/03/04/proxyxml-broken/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 20:41:43 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/archives/2008/03/04/proxyxml-broken/</guid>
		<description><![CDATA[There&#8217;s an issue with the Proxy and XML classes when you use the [] syntax to execute methods.
For example, this is the working behaviour:
var g:Function = myProxy.go; // calls getProperty on the Proxy subclass
myProxy.go(); // calls callProperty on the Proxy subclass

This is the non-working behaviour:
var g:Function = myProxy['go']; // calls getProperty on the Proxy subclass
myProxy['go'](); [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2008/03/04/proxyxml-broken/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FSCommand and getURL Bug in Flash Player 9</title>
		<link>http://blog.madebyderek.com/archives/2007/09/11/fscommand-and-geturl-bug-in-flash-player-9/</link>
		<comments>http://blog.madebyderek.com/archives/2007/09/11/fscommand-and-geturl-bug-in-flash-player-9/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 19:03:40 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=71</guid>
		<description><![CDATA[Having problems with getURL/navigateToURL or fscommand?
Using a getURL queue system because of a &#8220;bug in IE&#8221;?
Check this out:
FSCommand and getURL Bug in Flash Player 9
This will become more and more an issue with more and more people buying Flash CS3. In Flash CS3 you have the option to publish your AS1/AS2 projects for Flash Player [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2007/09/11/fscommand-and-geturl-bug-in-flash-player-9/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SWF Studio 3.4</title>
		<link>http://blog.madebyderek.com/archives/2007/08/21/swf-studio-34/</link>
		<comments>http://blog.madebyderek.com/archives/2007/08/21/swf-studio-34/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 15:40:39 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[SWF Studio]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=70</guid>
		<description><![CDATA[SWF Studio 3.4 has been released! Full Vista support and Flash Player 9.]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2007/08/21/swf-studio-34/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Extra Pixel in V2 Components</title>
		<link>http://blog.madebyderek.com/archives/2007/05/16/extra-pixel-in-v2-components/</link>
		<comments>http://blog.madebyderek.com/archives/2007/05/16/extra-pixel-in-v2-components/#comments</comments>
		<pubDate>Wed, 16 May 2007 19:24:34 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=66</guid>
		<description><![CDATA[I know a lot of people have moved on to Flex 2 and Flash CS3 but there are many people that are still forced to use Flash 8 and earlier due to a variety of circumstances. I am one such individual.
In developing an app for a client I found an issue with V2 List and [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2007/05/16/extra-pixel-in-v2-components/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AS3 Tip: for loop index should not be uint</title>
		<link>http://blog.madebyderek.com/archives/2007/02/14/as3-tip-for-loop-index-should-not-be-uint/</link>
		<comments>http://blog.madebyderek.com/archives/2007/02/14/as3-tip-for-loop-index-should-not-be-uint/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 19:47:06 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=63</guid>
		<description><![CDATA[In AS2 you probably typed your for loop index variable as Number. In AS3 I thought it would be better to use uint. I always start the index from 0, or some positive number and increment from there, like:


var i:uint;

for (i=0; i&#60;myArray.length; i++)
{
    // code
}

This worked fine for everything I did &#8230; [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2007/02/14/as3-tip-for-loop-index-should-not-be-uint/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AS3 Projects and the SWF Metadata tag</title>
		<link>http://blog.madebyderek.com/archives/2007/01/12/as3-projects-and-the-swf-metadata-tag/</link>
		<comments>http://blog.madebyderek.com/archives/2007/01/12/as3-projects-and-the-swf-metadata-tag/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 20:15:19 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=62</guid>
		<description><![CDATA[While most people are probably building Flex projects, there are some of us who build AS-only projects as well. While looking for resources on AS3 I came across Joey Lott&#8217;s ActionScript 3 Cookbook. Near the beginning of the book there is a section labelled &#8220;Customizing the Properties of an Application&#8221;. That caught my attention and [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2007/01/12/as3-projects-and-the-swf-metadata-tag/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ian, I am your father</title>
		<link>http://blog.madebyderek.com/archives/2006/10/23/ian-i-am-your-father/</link>
		<comments>http://blog.madebyderek.com/archives/2006/10/23/ian-i-am-your-father/#comments</comments>
		<pubDate>Mon, 23 Oct 2006 04:18:35 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=58</guid>
		<description><![CDATA[I am VERY pleased to present my son, Ian! Born at 10:15am on October 20th, 2006. Ian was born 9 pounds 4 ounces!
You know the cliche new fathers and mothers say: &#8220;You can&#8217;t describe the feeling&#8221;. Well, that&#8217;s pretty much all I can say about seeing my son born. I am so lucky to have [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2006/10/23/ian-i-am-your-father/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SWF Studio 3.3</title>
		<link>http://blog.madebyderek.com/archives/2006/09/11/swf-studio-33/</link>
		<comments>http://blog.madebyderek.com/archives/2006/09/11/swf-studio-33/#comments</comments>
		<pubDate>Mon, 11 Sep 2006 17:45:36 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[SWF Studio]]></category>

		<guid isPermaLink="false">http://blog.madebyderek.com/?p=57</guid>
		<description><![CDATA[SWF Studio 3.3 has been released!
Version 3.2 was released March 29th and contained some significant features that should really have been given more marketing attention. Even I am guilty of not posting about it here. So, here are some of the highlights for 3.2 and 3.3:
3.3

ActiveX support - you can use any registered ActiveX control, [...]]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2006/09/11/swf-studio-33/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SWF9 to SWF8 Communication - EI not LC - Part 2</title>
		<link>http://blog.madebyderek.com/archives/2006/07/13/swf9-to-swf8-communication-ei-not-lc-part-2/</link>
		<comments>http://blog.madebyderek.com/archives/2006/07/13/swf9-to-swf8-communication-ei-not-lc-part-2/#comments</comments>
		<pubDate>Thu, 13 Jul 2006 13:12:50 +0000</pubDate>
		<dc:creator>Derek Vadneau</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://tracethis.com/?p=55</guid>
		<description><![CDATA[In Part 1 we saw how we could talk to JavaScript from Flash and back. I described how this could help with SWF9 to SWF8 communication, but in Part 2 you can see an example of this working.]]></description>
		<wfw:commentRss>http://blog.madebyderek.com/archives/2006/07/13/swf9-to-swf8-communication-ei-not-lc-part-2/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
