<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mindfock &#187; Tips</title>
	<atom:link href="http://blog.mindfock.com/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mindfock.com</link>
	<description>Flash and ActionScript for the masses. With a little Python thrown in.</description>
	<lastBuildDate>Wed, 31 Mar 2010 10:07:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ActionSnippet &#8211; 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>John del Rosario</dc:creator>
				<category><![CDATA[AS 3.0]]></category>
		<category><![CDATA[ActionScript]]></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); //... } Much [...]]]></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="brush: jscript;">
mc.graphics.lineStyle(0);
mc.graphics.moveTo(10, 10);
mc.graphics.lineTo(20,10);
//...
</pre>
<p>To this:</p>
<pre class="brush: jscript;">
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>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
