<?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: Introducing RokTok, a Flex mashup featuring particle systems, last.fm and Twitter!</title>
	<atom:link href="http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/</link>
	<description>Josh Tynjala explores Flash, Flex, and ActionScript.</description>
	<lastBuildDate>Thu, 11 Mar 2010 19:18:42 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-61766</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Thu, 22 Oct 2009 02:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-61766</guid>
		<description>ed, you can see where &lt;code&gt;MoveWithExceptions&lt;/code&gt; is ignored by the emitter in its &lt;code&gt;update()&lt;/code&gt; function:
&lt;pre&gt;override public function update(emitter:Emitter, particle:Particle, time:Number):void
{
    if(this.exceptions.indexOf(particle.image) &gt;= 0)
    {
        return;
    }
    super.update(emitter, particle, time);
}
&lt;/pre&gt;

The emitter tells MoveWithExceptions to update a particle, but if the particle being updated is in the exceptions list, the &lt;code&gt;update()&lt;/code&gt; function just returns without doing anything.</description>
		<content:encoded><![CDATA[<p>ed, you can see where <code>MoveWithExceptions</code> is ignored by the emitter in its <code>update()</code> function:</p>
<pre>override public function update(emitter:Emitter, particle:Particle, time:Number):void
{
    if(this.exceptions.indexOf(particle.image) >= 0)
    {
        return;
    }
    super.update(emitter, particle, time);
}
</pre>
<p>The emitter tells MoveWithExceptions to update a particle, but if the particle being updated is in the exceptions list, the <code>update()</code> function just returns without doing anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ed</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-61763</link>
		<dc:creator>ed</dc:creator>
		<pubDate>Wed, 21 Oct 2009 21:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-61763</guid>
		<description>Josh,

Great work! I&#039;m currently experimenting with Flint and have run into a problem with isolating a single particle when the mouse rolls over it. I checked out your source code and noticed that MoveWithExceptions simply places the particle into an array to isolate it, then removes it from the array to place it back into the fray, but I&#039;m not clear on how it removes that from the effects of the emitter.

What am I missing in this picture? Any insight you can give me is greatly appreciated!
Thank you,
Ed</description>
		<content:encoded><![CDATA[<p>Josh,</p>
<p>Great work! I&#8217;m currently experimenting with Flint and have run into a problem with isolating a single particle when the mouse rolls over it. I checked out your source code and noticed that MoveWithExceptions simply places the particle into an array to isolate it, then removes it from the array to place it back into the fray, but I&#8217;m not clear on how it removes that from the effects of the emitter.</p>
<p>What am I missing in this picture? Any insight you can give me is greatly appreciated!<br />
Thank you,<br />
Ed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-60755</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Thu, 19 Feb 2009 18:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-60755</guid>
		<description>Emanuil, it&#039;s because the VOs are bindable. Flex&#039;s binding system uses events behind the scenes.</description>
		<content:encoded><![CDATA[<p>Emanuil, it&#8217;s because the VOs are bindable. Flex&#8217;s binding system uses events behind the scenes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emanuil</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-60750</link>
		<dc:creator>Emanuil</dc:creator>
		<pubDate>Thu, 19 Feb 2009 14:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-60750</guid>
		<description>Great work!

One question if I may. Why do your VOs (Artist.as and Message.as) extend from EventDispatcher if they don&#039;t dispatch any events? Thank you!</description>
		<content:encoded><![CDATA[<p>Great work!</p>
<p>One question if I may. Why do your VOs (Artist.as and Message.as) extend from EventDispatcher if they don&#8217;t dispatch any events? Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-57591</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Mon, 06 Oct 2008 05:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-57591</guid>
		<description>John, it&#039;s a custom UIComponent. The &lt;a href=&quot;http://joshblog.net/projects/roktok/srcview/&quot; rel=&quot;nofollow&quot;&gt;full source code&lt;/a&gt; for the application is available, so take a look at it yourself! The class is &lt;code&gt;com.flextoolbox.roktok.views.MessageParticle&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>John, it&#8217;s a custom UIComponent. The <a href="http://joshblog.net/projects/roktok/srcview/" rel="nofollow">full source code</a> for the application is available, so take a look at it yourself! The class is <code>com.flextoolbox.roktok.views.MessageParticle</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-57577</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 06 Oct 2008 03:05:22 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-57577</guid>
		<description>Hi Josh,

Thx for the cool app !
I&#039;ve got a technical question for ya.
How did you make those small circles in which an avatar resides ?
Did you make a custom component for it by Sprite or UIComponent ?
or swf ? or something else ???

thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Josh,</p>
<p>Thx for the cool app !<br />
I&#8217;ve got a technical question for ya.<br />
How did you make those small circles in which an avatar resides ?<br />
Did you make a custom component for it by Sprite or UIComponent ?<br />
or swf ? or something else ???</p>
<p>thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-56232</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 25 Sep 2008 08:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-56232</guid>
		<description>Nice Josh. We&#039;ve been using Mate over here for a new product we&#039;ll be releasing soon, and I&#039;m really digging it. I&#039;ll have to take a look at your source when I get a minute!</description>
		<content:encoded><![CDATA[<p>Nice Josh. We&#8217;ve been using Mate over here for a new product we&#8217;ll be releasing soon, and I&#8217;m really digging it. I&#8217;ll have to take a look at your source when I get a minute!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-55610</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 16 Sep 2008 03:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-55610</guid>
		<description>Very nice, i enjoyed checking out the source
Flint is crazy</description>
		<content:encoded><![CDATA[<p>Very nice, i enjoyed checking out the source<br />
Flint is crazy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laura Arguello</title>
		<link>http://joshblog.net/2008/09/08/introducing-roktok-a-flex-mashup-featuring-particle-systems-lastfm-and-twitter/comment-page-1/#comment-55167</link>
		<dc:creator>Laura Arguello</dc:creator>
		<pubDate>Wed, 10 Sep 2008 06:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://joshblog.net/?p=272#comment-55167</guid>
		<description>Hi Josh,
Great job!! It really looks awesome. 
This is going straight to the showcase :)

I am glad to hear that you gave Mate a try,
Laura</description>
		<content:encoded><![CDATA[<p>Hi Josh,<br />
Great job!! It really looks awesome.<br />
This is going straight to the showcase <img src='http://joshblog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am glad to hear that you gave Mate a try,<br />
Laura</p>
]]></content:encoded>
	</item>
</channel>
</rss>
