<?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: Flash MX 2004 Framework Component Tutorial	</title>
	<atom:link href="https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Fri, 30 Dec 2005 01:48:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Sid_M		</title>
		<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/comment-page-1#comment-1786</link>

		<dc:creator><![CDATA[Sid_M]]></dc:creator>
		<pubDate>Fri, 30 Dec 2005 01:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=551#comment-1786</guid>

					<description><![CDATA[Follow-on to my previous post.

Since UIComponent mixes in UIEventDispatcher, the above code does not require any of the code mixing in EventDispatcher, thus it doesn&#039;t need the following lines:

static private var inited:Boolean = false;
...
public var addEventListener:Function;
public var removeEventListener:Function;
private var dispatchEvent:Function;
...
 if(!inited)
 {
      inited = true;
                mx.events.EventDispatcher.initialize(SignInView.prototype);
        }


]]></description>
			<content:encoded><![CDATA[<p>Follow-on to my previous post.</p>
<p>Since UIComponent mixes in UIEventDispatcher, the above code does not require any of the code mixing in EventDispatcher, thus it doesn&#8217;t need the following lines:</p>
<p>static private var inited:Boolean = false;<br />
&#8230;<br />
public var addEventListener:Function;<br />
public var removeEventListener:Function;<br />
private var dispatchEvent:Function;<br />
&#8230;<br />
 if(!inited)<br />
 {<br />
      inited = true;<br />
                mx.events.EventDispatcher.initialize(SignInView.prototype);<br />
        }</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sid_M		</title>
		<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/comment-page-1#comment-1785</link>

		<dc:creator><![CDATA[Sid_M]]></dc:creator>
		<pubDate>Fri, 30 Dec 2005 01:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=551#comment-1785</guid>

					<description><![CDATA[I don&#039;t know if this was true in MX 2004, but at least as of Flash 8, the UIEventDispatcher class is mixed into the UIComponent class, so you don&#039;t (any longer) need the following lines:

public var addEventListener:Function;
public var removeEventListener:Function;
private var dispatchEvent:Function;]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this was true in MX 2004, but at least as of Flash 8, the UIEventDispatcher class is mixed into the UIComponent class, so you don&#8217;t (any longer) need the following lines:</p>
<p>public var addEventListener:Function;<br />
public var removeEventListener:Function;<br />
private var dispatchEvent:Function;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: driverjase		</title>
		<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/comment-page-1#comment-1784</link>

		<dc:creator><![CDATA[driverjase]]></dc:creator>
		<pubDate>Thu, 30 Dec 2004 21:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=551#comment-1784</guid>

					<description><![CDATA[This is too nice of a tutorial to not offer a printable version, so I converted it into a word doc ... you can get it from my website until JesterXL wants to host it ;)

&lt;a href=&quot;http://www.digitalflipbook.com/flash/ComponentFramework.doc&quot; rel=&quot;nofollow&quot;&gt;http://www.digitalflipbook.com/flash/ComponentFramework.doc&lt;/a&gt;

Flashpaper version: &lt;a href=&quot;http://www.digitalflipbook.com/flash/ComponentFramework.swf&quot; rel=&quot;nofollow&quot;&gt;http://www.digitalflipbook.com/flash/ComponentFramework.swf&lt;/a&gt;

Hope you don&#039;t mind, but I went through and tweaked a few of the ...er... gramatical errors just to make it easier to follow.]]></description>
			<content:encoded><![CDATA[<p>This is too nice of a tutorial to not offer a printable version, so I converted it into a word doc &#8230; you can get it from my website until JesterXL wants to host it ;)</p>
<p><a href="http://www.digitalflipbook.com/flash/ComponentFramework.doc" rel="nofollow">http://www.digitalflipbook.com/flash/ComponentFramework.doc</a></p>
<p>Flashpaper version: <a href="http://www.digitalflipbook.com/flash/ComponentFramework.swf" rel="nofollow">http://www.digitalflipbook.com/flash/ComponentFramework.swf</a></p>
<p>Hope you don&#8217;t mind, but I went through and tweaked a few of the &#8230;er&#8230; gramatical errors just to make it easier to follow.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Stephen Hueners		</title>
		<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/comment-page-1#comment-1783</link>

		<dc:creator><![CDATA[Stephen Hueners]]></dc:creator>
		<pubDate>Fri, 30 Jul 2004 13:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=551#comment-1783</guid>

					<description><![CDATA[Much appreciate the time taken to post this. I&#039;ve learned alot. But of course it&#039;s spawned a question or two...

Given this is the V in an MVC pattern would input validation take place here or in the controller? e.g. if one required a valid email address would one want to handle that in the click function prior to dispatching the event?

Also....it&#039;d be ultra cool to see a barebones Controller written against this View.]]></description>
			<content:encoded><![CDATA[<p>Much appreciate the time taken to post this. I&#8217;ve learned alot. But of course it&#8217;s spawned a question or two&#8230;</p>
<p>Given this is the V in an MVC pattern would input validation take place here or in the controller? e.g. if one required a valid email address would one want to handle that in the click function prior to dispatching the event?</p>
<p>Also&#8230;.it&#8217;d be ultra cool to see a barebones Controller written against this View.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: eyezberg		</title>
		<link>https://jessewarden.com/2004/06/flash-mx-2004-framework-component-tutorial.html/comment-page-1#comment-1782</link>

		<dc:creator><![CDATA[eyezberg]]></dc:creator>
		<pubDate>Thu, 17 Jun 2004 00:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=551#comment-1782</guid>

					<description><![CDATA[This is so cool I had to feature it!
Thank you!!]]></description>
			<content:encoded><![CDATA[<p>This is so cool I had to feature it!<br />
Thank you!!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
