<?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>Mindfock</title>
	<atom:link href="http://blog.mindfock.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mindfock.com</link>
	<description>Flash, beer and ActionScript for everyone.</description>
	<pubDate>Thu, 06 Nov 2008 00:42:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>ActionSnippet - AS3 tips and tricks</title>
		<link>http://blog.mindfock.com/actionsnippet-as3-tips-and-tricks/</link>
		<comments>http://blog.mindfock.com/actionsnippet-as3-tips-and-tricks/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 00:42:52 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

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

		<category><![CDATA[AS3.0]]></category>

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=56</guid>
		<description><![CDATA[I&#8217;ve bookmarked this site. You should too! There are some very useful and helpful tips in there. Like the latest one, as of this writing, about simplifying multiple method calls to a graphic (or any) object.
From this:

mc.graphics.lineStyle(0);
mc.graphics.moveTo(10, 10);
mc.graphics.lineTo(20,10);
//...

To this:

with (mc.graphics) {
    lineStyle(0);
    moveTo(10, 10);
    lineTo(20,10);
  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve bookmarked this site. You should too! There are some very useful and helpful tips in there. Like the latest one, as of this writing, about simplifying multiple method calls to a graphic (or any) object.</p>
<p>From this:</p>
<pre class="syntax-highlight:js">
mc.graphics.lineStyle(0);
mc.graphics.moveTo(10, 10);
mc.graphics.lineTo(20,10);
//...
</pre>
<p>To this:</p>
<pre class="syntax-highlight:js">
with (mc.graphics) {
    lineStyle(0);
    moveTo(10, 10);
    lineTo(20,10);
    //...
}
</pre>
<p>Much more readable and easier to type. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://actionsnippet.com/" target="_blank">Check it out here and bookmark it.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/actionsnippet-as3-tips-and-tricks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Art of Pixar</title>
		<link>http://blog.mindfock.com/the-art-of-pixar/</link>
		<comments>http://blog.mindfock.com/the-art-of-pixar/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 11:21:04 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[Art and Design]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=53</guid>
		<description><![CDATA[I happened on this site today. It is a &#8221; fan-curated gallery&#8221; of all of Pixar&#8217;s publicly available conecpt artwork. It&#8217;s not very extensive right now, but it still is a great source of inspiration.
The Art of Pixar
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.theartofpixar.com/"><img class="alignleft size-thumbnail wp-image-55" title="0001_buzzwoodypencil_large1" src="http://blog.mindfock.com/wp-content/uploads/2008/11/0001_buzzwoodypencil_large1-150x150.jpg" alt="" width="150" height="150" /></a>I happened on this site today. It is a &#8221; fan-curated gallery&#8221; of all of Pixar&#8217;s publicly available conecpt artwork. It&#8217;s not very extensive right now, but it still is a great source of inspiration.</p>
<p><a href="http://www.theartofpixar.com/" target="_blank">The Art of Pixar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/the-art-of-pixar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nifty FPS/CPU monitor class</title>
		<link>http://blog.mindfock.com/nifty-fpscpu-monitor-class/</link>
		<comments>http://blog.mindfock.com/nifty-fpscpu-monitor-class/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 04:19:37 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

		<category><![CDATA[Programming and Development]]></category>

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=51</guid>
		<description><![CDATA[I found this little class that displays the framerate of the current movie and the total memory usage of the Flash Player on your movie. It also shows the version of the player and the operating system you are on. It even has a graph. Very useful for monitoring your experiments or whatever. 
Link.
If anyone knows [...]]]></description>
			<content:encoded><![CDATA[<p>I found this little class that displays the framerate of the current movie and the total memory usage of the Flash Player on your movie. It also shows the version of the player and the operating system you are on. It even has a graph. Very useful for monitoring your experiments or whatever. </p>
<p><a title="FPSMonitor class" href="http://www.flashfuck.it/2008/05/27/fpsmonitor-for-as3-and-flex-projects/#comment-68" target="_blank">Link.</a></p>
<p>If anyone knows something better, please let me know. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/nifty-fpscpu-monitor-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Papervision test</title>
		<link>http://blog.mindfock.com/papervision-test/</link>
		<comments>http://blog.mindfock.com/papervision-test/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 04:41:28 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

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

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

		<category><![CDATA[Programming and Development]]></category>

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=50</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve posted here. Got caught up with exams and projects for school, and a lot of DotA with friends. Now sem-break is here, I  can now just sit around and be bored.
I&#8217;ve been playing around with Papervsion lately, and have finally understood how to make it work, albeit only lightly. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve posted here. Got caught up with exams and projects for school, and a lot of <a href="http://www.dota-allstars.com">DotA </a>with friends. Now sem-break is here, I  can now just sit around and be bored.</p>
<p>I&#8217;ve been playing around with Papervsion lately, and have finally understood how to make it work, albeit only lightly. Here is one of my first attempts with Papervision. It&#8217;s just a bunch of spheres, where clicking on one will move the camera to its position, while the camera focuses on the center.</p>
<p>It&#8217;s not much. I&#8217;m still working on it, but I just wanted to post something here. <a href="http://www.mindfock.com/experiments/SphereCamera/floatingparticles.html">Check it out</a>. <a href="http://get.adobe.com/flashplayer/">Flash Player 10 is required.</a></p>
<p><a href="http://www.mindfock.com/experiments/SphereCamera/floatingparticles.html"><img class="aligncenter" title="Particles in 3D" src="http://www.mindfock.com/experiments/SphereCamera/particles.jpg" alt="Floating particles" /></a></p>
<p>Update: I&#8217;ve added a depth of field effect. It&#8217;s not very &#8220;accurate&#8221;, but it&#8217;s a nice touch. I don&#8217;t know how to do it efficiently, so it might be CPU intensive.</p>
<p>Update 2: I&#8217;ve added random movement to the particles.</p>
<p>As always, the <a href="http://www.mindfock.com/experiments/SphereCamera/Main.as">source</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/papervision-test/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learning Illustrator</title>
		<link>http://blog.mindfock.com/learning-illustrator/</link>
		<comments>http://blog.mindfock.com/learning-illustrator/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 12:33:45 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[Art and Design]]></category>

		<category><![CDATA[Computer Graphics]]></category>

		<category><![CDATA[Web Design]]></category>

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=49</guid>
		<description><![CDATA[I&#8217;ve decided to give Illustrator a second chance since I&#8217;ve found that the Flash drawing environment was just not cutting it for me. I tried Inkscape, but it just didn&#8217;t feel right. I&#8217;ve always steered clear of Illustrator before because I hated how complicated it was compared to Flash, but it appears I am forced [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: left;" title="Adobe Illustrator" src="http://www.sheafriesen.com/images/illustrator.gif" alt="Ai" width="112" height="108" />I&#8217;ve decided to give Illustrator a second chance since I&#8217;ve found that the Flash drawing environment was just not cutting it for me. I tried <a title="Inkscape" href="http://inkscape.org/">Inkscape</a>, but it just didn&#8217;t feel right. I&#8217;ve always steered clear of Illustrator before because I hated how complicated it was compared to Flash, but it appears I am forced to just suck it in.</p>
<p>After a few hours of searching, I found this nice introductory <a href="http://www.vectordiary.com/illustrator/learn-illustrator-cs3-in-30-days/">tutorial</a>. I think the &#8220;30 days&#8221; thing is just a gimmick, but, I do need to learn it in 5 days if I am to finish a project I&#8217;m working on. And since I&#8217;m familiar on how vector graphics work, and all I really need to do is adjust and learn the more advanced stuff, 5 days seems plausible. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve also gathered some nice links regarding Illustrator/vector stuff.</p>
<p><a href="http://vectips.com/illustrator-and-vector-resources/">Vectips</a></p>
<p><a href="http://aiburn.com/ ">AIburn</a></p>
<p><a href="http://vectortuts.com/ ">VectorTuts</a></p>
<p>And <em>the</em> most awesome site I&#8217;ve found so far:<a href="http://www.gomediazine.com/ "> GoMediaZine</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/learning-illustrator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex Builder, Papervision and GTween - great way to get the ball rolling again</title>
		<link>http://blog.mindfock.com/flex-builder-papervision-and-gtween-great-way-to-get-the-ball-rolling-again/</link>
		<comments>http://blog.mindfock.com/flex-builder-papervision-and-gtween-great-way-to-get-the-ball-rolling-again/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 15:50:02 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

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

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

		<category><![CDATA[Programming and Development]]></category>

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

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

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

		<category><![CDATA[Flash Engines]]></category>

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=48</guid>
		<description><![CDATA[Greetings all, still haven&#8217;t fixed the PC, and no plans in buying a new one.  But, being forced to use a Macbook with no games installed(damn DotA) and a slow connection, I managed to find some time to get back into Flash and ActionScript.  
I finally figured out how to setup external class [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings all, still haven&#8217;t fixed the PC, and no plans in buying a new one. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> But, being forced to use a Macbook with no games installed(damn <a title="Defense of the Ancients" href="http://www.dota-allstars.com/">DotA</a>) and a slow connection, I managed to find some time to get back into Flash and ActionScript. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I finally figured out how to setup external class libraries in FlexBuilder, which took longer than I would have hoped. Now I can use Papervision3D, Away3D and have a central library for all other API&#8217;s and classes.  It&#8217;s not as enjoyable as FlashDevelop, but, it&#8217;s better than nothing.</p>
<p>I also started playing with PV3D, which is just awesome. Very fun to play around with, and I can&#8217;t wait to make something I could use for my eternally work-in-progress site.</p>
<p>And finally, there&#8217;s a new tweening engine on the block. It&#8217;s called <a title="GTween" href="http://www.gskinner.com/blog/archives/2008/08/gtween_a_new_tw.html">gTween</a> and it&#8217;s made by <a title="gSkinner" href="http://www.gskinner.com/blog">Grant Skinner</a>, so you know it&#8217;s great. Like TweenLite, it aims for speed and it&#8217;s also very lightweight. It&#8217;s still in beta, and not as powerful and feature-packed as TweenMax or other tweening engines. I haven&#8217;t tested it enough to choose it over TweenLite yet, but, I like it&#8217;s different approach to creating and managing (yep, you could manage, edit, reuse and even nest) tweens. Check it out <a title="gTween blog post" href="http://www.gskinner.com/blog/archives/2008/08/gtween_a_new_tw.html">here</a>.</p>
<p>And, yeah, I would post my little &#8220;experiment&#8221; with Papervision, but I can&#8217;t seem to extract/find the swf file. I even tried using the .as file as a Document class to a Flash file, but I still can&#8217;t double-click and play the movie. </p>
<p>I am also having trouble with FlexBuilder, whenever I Run/Play button to test a project, it often doesn&#8217;t show anything until several retries or not at all, but using the .as file as a Doc class to a Flash file, it plays fine. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> Any help would be very much appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/flex-builder-papervision-and-gtween-great-way-to-get-the-ball-rolling-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>R.I.P.</title>
		<link>http://blog.mindfock.com/rip/</link>
		<comments>http://blog.mindfock.com/rip/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 00:22:11 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mindfock.com/?p=47</guid>
		<description><![CDATA[My PC died earlier this week. It took with it all my files and experiments, but no worries, I have uploaded some of them here and I already learned from all of them. I also don&#8217;t have the latest files for my website now (which is getting cold), so I guess I should just start [...]]]></description>
			<content:encoded><![CDATA[<p>My PC died earlier this week. It took with it all my files and experiments, but no worries, I have uploaded some of them here and I already learned from all of them. I also don&#8217;t have the latest files for my website now (which is getting cold), so I guess I should just start a new one. But, the worst part is, I only have a Mac to work on now, which doesn&#8217;t have FlashDevelop <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> . I either have to try to work on FlexBuilder or just be idle for a few days (or weeks!) until I fix my PC or maybe get a new one *sigh*.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/rip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Aviary beta testing</title>
		<link>http://blog.mindfock.com/aviary-beta-testing/</link>
		<comments>http://blog.mindfock.com/aviary-beta-testing/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 15:24:36 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[Art and Design]]></category>

		<category><![CDATA[Computer Graphics]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=45</guid>
		<description><![CDATA[
I recently got an invite from someone at the kirupa.com forums to some Aviary tools. I only have access to two tools at the moment (Phoenix and Peacock), and only tested Phoenix (Peacock was a bit too complicated to test).
All I&#8217;ve got to say is, wow. This toolset is quite impressive. It has some very [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Birds" src="http://a.viary.com/images_orig/layout/birds.jpg" alt="Aviary birds" width="900" height="250" /></p>
<p>I recently got an invite from <a title="brianmanden's profile" href="http://www.kirupa.com/forum/showthread.php?t=283789">someone</a> at the <a href="http://www.kirupa.com/forum">kirupa.com</a> forums to some <a title="Aviary" href="http://a.viary.com/">Aviary</a> tools. I only have access to two tools at the moment (Phoenix and Peacock), and only tested Phoenix (Peacock was a bit too complicated to test).</p>
<p>All I&#8217;ve got to say is, wow. This toolset is quite impressive. It has some very nice basic features, a few filter effects, hotkeys (!), and it is very smooth (it&#8217;s slow at times, but that&#8217;s because of my limited CPU). The interface is very nice, although the icons and panels are a little too big and take a lot of real estate IMO.</p>
<p>Still, it&#8217;s a little buggy, and there a Feedback menu on the toolbar for easy, well, feedback. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> I&#8217;m going to play more with Phoenix and try to make something cool. I really want to test Hummingbird (the 3D editor), but I don&#8217;t know how to sign up for the beta or even if it&#8217;s available.</p>
<p>I have a few invites remaining, so if you want to try them, just post.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/aviary-beta-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[Learn] A &#8220;pixelating&#8221; effect on a Bitmap</title>
		<link>http://blog.mindfock.com/learn-a-pixelating-effect-on-a-bitmap/</link>
		<comments>http://blog.mindfock.com/learn-a-pixelating-effect-on-a-bitmap/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 14:19:03 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

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

		<category><![CDATA[Programming and Development]]></category>

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=44</guid>
		<description><![CDATA[I did a little experimenting with the BitmapData class, and came up with this.
I found this effect from a gallery somewhere, and thought it would be cool to try my hand at it, for learning purposes.
Click on the image below to see the effect.

<object	type="application/x-shockwave-flash"
			data="http://www.mindfock.com/blog/wp-content/uploads/2008/06/pixelate.swf"
			width="300"
			height="225">
	<param name="movie" value="http://www.mindfock.com/blog/wp-content/uploads/2008/06/pixelate.swf" />
</object>
What&#8217;s happening is, I get the size of [...]]]></description>
			<content:encoded><![CDATA[<p>I did a little experimenting with the BitmapData class, and came up with this.<br />
I found this effect from a gallery somewhere, and thought it would be cool to try my hand at it, for learning purposes.</p>
<p>Click on the image below to see the effect.</p>

<object	type="application/x-shockwave-flash"
			data="http://www.mindfock.com/blog/wp-content/uploads/2008/06/pixelate.swf"
			width="300"
			height="225">
	<param name="movie" value="http://www.mindfock.com/blog/wp-content/uploads/2008/06/pixelate.swf" />
</object>
<p>What&#8217;s happening is, I get the size of the image, divide it by the size of the &#8220;pixels&#8221; I want, then create an array of Rectangles positioned in a grid over the image.<br />
I then fill each Rectangle with the color of the pixel in it&#8217;s center by using the getPixel() and fillRect() methods of the BitmapData class.<br />
Here is the central function doing the pixelating.</p>
<pre class="syntax-highlight:js">
private function pixelate(bitmap:Bitmap, strength:Number):void {
var _x:int = 0; // position of the rectangle
var _y:int = 0;
if (strength &gt; 1){
_strength = 1;
}
var _strength:Number = strength; // multiplier for size of &quot;pixels&quot;

var _w:Number = bitmap.bitmapData.width * _strength; //size of &quot;pixels&quot;
var _h:Number = bitmap.bitmapData.height * _strength;

var nH:int = Math.ceil(bitmap.bitmapData.width / _w); // number of rectangles needed horizontally
var nV:int = Math.ceil(bitmap.bitmapData.height / _h);// number of rectangles needed vertically

var rectangles:Array = []; // Rectangles array

//create rectangles
for (var i:int = 0; i &lt; nV; i ++){
var targH:Number = _h;
if (i &gt;= nV - 1){
targH = bitmap.bitmapData.height - _y;
}
for (var j:int = 0; j &lt; nH; j ++){
var targW:Number = _w;
if (j &gt;= nH - 1){
targW = bitmap.bitmapData.width - _x;
}
rectangles.push(new Rectangle(_x, _y, targW, targH));
_x += _w;
}
_x = 0;
_y += _h;

}
//fill in rectangles
for (i = 0; i &lt; rectangles.length; i++){

var rect:Rectangle = rectangles[i];
var pix:uint = _states[0].getPixel((rect.x + rect.width / 2), (rect.y + rect.height / 2));
bitmap.bitmapData.fillRect(rect, pix);
}

saveCurrentState(bitmap.bitmapData);

}
</pre>
<p>Now for the reverting to the original image part, I had to improvise. Since I overwrote the BitmapData with a bunch of filled rectangles, I couldn&#8217;t do much with it.<br />
So I used an array which stores each &#8220;state&#8221; the BitmapData is in. And I could just retrieve the BitmapData in the array and copy it into the original BitmapData.</p>
<pre class="syntax-highlight:js">
private function saveCurrentState(bitmapData:BitmapData):void {
_states.push(bitmapData.clone());
}
private function revertToState(stage:int):void {
try{
bmData.copyPixels(_states[stage], bmData.rect, new Point(bmData.rect.x, bmData.rect.y));
}catch (e:Error){
throw new Error(&quot;Invalid state. &quot;);
}
}
</pre>
<p>To create the animation, I just called the pixelate() function through a Timer at 300 milliseconds.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/learn-a-pixelating-effect-on-a-bitmap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slideshow on ActionScript 3</title>
		<link>http://blog.mindfock.com/slideshow-on-actionscript-3/</link>
		<comments>http://blog.mindfock.com/slideshow-on-actionscript-3/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 00:53:11 +0000</pubDate>
		<dc:creator>mindfocker</dc:creator>
		
		<category><![CDATA[AS 3.0]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.mindfock.com/?p=43</guid>
		<description><![CDATA[Just found this great resource for learning AS3. It is a slideshow created by Grant Skinner showing the basics of the language and some optimization tips. Each page worth an article itself, all 167 of them. It not only sounds good, it looks good.  
http://gskinner.com/talks/as3workshop/
]]></description>
			<content:encoded><![CDATA[<p>Just found this great resource for learning AS3. It is a slideshow created by <a title="gskinner blog" href="http://gskinner.com/blog/">Grant Skinner</a> showing the basics of the language and some optimization tips. Each page worth an article itself, all 167 of them. It not only sounds good, it looks good. <img src='http://blog.mindfock.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>http://gskinner.com/talks/as3workshop/</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mindfock.com/slideshow-on-actionscript-3/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
