<?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>gotoandlearnflash.com &#187; Flash Tutorial</title>
	<atom:link href="http://gotoandlearnflash.com/category/flash-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://gotoandlearnflash.com</link>
	<description>Flash tutorials, Flash resources and Flash inspiration</description>
	<lastBuildDate>Mon, 16 Mar 2009 19:28:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Flash Tutorial: Adding time/date stamp in Flash</title>
		<link>http://gotoandlearnflash.com/flash-tutorial-adding-timedate-stamp-in-flash/</link>
		<comments>http://gotoandlearnflash.com/flash-tutorial-adding-timedate-stamp-in-flash/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 19:28:15 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=73</guid>
		<description><![CDATA[Learn how to display the system date and time using dynamic text fields in Flash with this short Flash tutorial. Editor&#8217;s review: Very short Flash tutorial that shows how to have the systems date and time display in Flash. Not the easiest Flash tutorial to follow, and it&#8217;s definitely lacking on explanation, but if you [...]]]></description>
			<content:encoded><![CDATA[<p>Learn how to display the system date and time using dynamic text fields in Flash with this short Flash tutorial.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-73"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Very short Flash tutorial that shows how to have the systems date and time display in Flash. Not the easiest Flash tutorial to follow, and it&#8217;s definitely lacking on explanation, but if you are looking to have the date and time display in your Flash projects, this is a great way to do it.</p>
<p>Note: if you are using copy/paste, all the quotes use smartquotes (can be aggravating for beginners), so you will need to swap in regular quotes. Also, there is a typo where it reads <span style="color: #ff0000;">month[datedispay.getMonth()]</span>. It is missing an &#8220;l&#8221; in display, should read: <span style="color: #008000;">month[datedisplay.getMonth()]</span>.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Adding time/date stamp in Flash" href="http://frozenhaddock.co.uk/2008/04/display-the-date-and-time/" target="_blank">Flash Tutorial: Adding time/date stamp in Flash<br />
</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> All<br />
<strong>ActionScript:</strong> 2.0<br />
<strong>Online example:</strong> No<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/flash-tutorial-adding-timedate-stamp-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial: Circle collisions</title>
		<link>http://gotoandlearnflash.com/flash-tutorial-circle-collisions/</link>
		<comments>http://gotoandlearnflash.com/flash-tutorial-circle-collisions/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 19:05:19 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=68</guid>
		<description><![CDATA[Flash tutorial describing how to set collisions with 2 circles using ActionScript 2.0 or ActionScript 3.0. Editor&#8217;s review: A lot of people use Flash&#8217;s hitTest() method for setting up collisions between 2 symbols, which is great, except when using on circles, hit test takes the outer dimensions of the entire symbol (a square), so it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial describing how to set collisions with 2 circles using ActionScript 2.0 or ActionScript 3.0.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-68"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>A lot of people use Flash&#8217;s hitTest() method for setting up collisions between 2 symbols, which is great, except when using on circles, hit test takes the outer dimensions of the entire symbol (a square), so it&#8217;s not an exact collision. This short Flash tutorial describes how to set up collisions of 2 circles where the collision is the curve lines of the circles rather than the symbol area. Pretty neat!</p>
<p>Also, nice explanation of the code accompanied by a short trigonometry lesson. But don&#8217;t worry, you don&#8217;t need to know trigonometry to complete this tutorial, it just helps explain what the code is doing.</p>
<p>ActionScript 2.0 and ActionScript 3.0 code is provided, although I couldn&#8217;t get the ActionScript 3.0 code to work correctly. Also, be careful when doing a copy/paste, as the AS2.0 code uses the HTML code for the less than symbol (&#8220;&amp;lt;&#8221; vs &#8220;&lt;&#8221;) on line 10. User will need to swap in the less than symbol if doing a copy and paste. Otherwise, the AS 2.0 code worked great!</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Random Mask Effect in ActionScript 3.0" href="http://awesty.com/blog/2008/09/circle-collisions/" target="_blank">Flash Tutorial: Circle Collisons<br />
</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> All<br />
<strong>ActionScript:</strong> 2.0 and 3.0 code provided (note: editor could not get 3.0 code to work properly)<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/flash-tutorial-circle-collisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Masks in Flash ActionScript 3.0</title>
		<link>http://gotoandlearnflash.com/working-with-masks-in-flash-actionscript-30/</link>
		<comments>http://gotoandlearnflash.com/working-with-masks-in-flash-actionscript-30/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 18:48:05 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Intermediate]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=66</guid>
		<description><![CDATA[his Flash tutorial demonstrates how to create random masks over an image in Flash using ActionScript 3.0 code. Editor&#8217;s review: Pretty nifty effect, and very easy to add. Would really like some more in-depth explanation of the code, but still a pretty good tutorial. Unfortunately, when I first tried to execute, I got a few [...]]]></description>
			<content:encoded><![CDATA[<p>his Flash tutorial demonstrates how to create random masks over an image in Flash using ActionScript 3.0 code.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-66"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Pretty nifty effect, and very easy to add. Would really like some more in-depth explanation of the code, but still a pretty good tutorial. Unfortunately, when I first tried to execute, I got a few errors (which is why I would have liked better explanation of the code). Using the &#8220;Output&#8221; window in Flash helped me troubleshoot, but for beginners, they might find this tutorial a little confusing.</p>
<p>Here are the 2 errors/changes I made for it to work:</p>
<blockquote><p>//Create the mask which follows cursor movement (master mask)<br />
var masterMask:MyMask=new MyMask(1);</p></blockquote>
<p>In the second line of the code above, I simply removed the &#8220;1&#8243; to read:</p>
<p>var masterMask:MyMask=new MyMask();</p>
<p>The other error was in this code:</p>
<blockquote><p>//Create a new mask with random scale<br />
var newMask:MyMask=new MyMask(scale);</p></blockquote>
<p>Again, I simply removed the &#8220;scale&#8221; from between the parentheses to read:</p>
<p>var newMask:MyMask=new MyMask();</p>
<p>That did the the trick for me. Again, with more explanation, it would be easier to for a beginner to edit. Still, a great little effect, and if you know what to look for in the error output window, a pretty easy to implement Flash tutorial.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Random Mask Effect in ActionScript 3.0" href="http://tutorials.flashmymind.com/2009/02/shooting-masks-via-actionscript-3/" target="_blank">Flash Tutorial: Random Mask Effect in  ActionScript 3.0</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> CS3 and above<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/working-with-masks-in-flash-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Custom Cursor using Flash ActionScript 3.0</title>
		<link>http://gotoandlearnflash.com/creating-a-custom-cursor-using-flash-actionscript-30/</link>
		<comments>http://gotoandlearnflash.com/creating-a-custom-cursor-using-flash-actionscript-30/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 15:08:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Basic]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=43</guid>
		<description><![CDATA[This Flash tutorial demonstrates how to create a custom mouse cursor in Flash using ActionScript 3.0 code. Editor&#8217;s review: Very well explained tutorial for creating an effect that I&#8217;ve found many readers wondering how to do. Short and easy to follow, shouldn&#8217;t take more than 15 minutes even for Flash ActionScript 3.0 beginners. Author&#8217;s Quote: [...]]]></description>
			<content:encoded><![CDATA[<p>This Flash tutorial demonstrates how to create a custom mouse cursor in Flash using ActionScript 3.0 code.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-43"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Very well explained tutorial for creating an effect that I&#8217;ve found many readers wondering how to do. Short and easy to follow, shouldn&#8217;t take more than 15 minutes even for Flash ActionScript 3.0 beginners.</p>
<blockquote><p>Author&#8217;s Quote:</p>
<p>This tutorial will provide you with a step-by-step guide on how to create a custom cursor in Flash CS3 using AS3. This a simple trick for beginners which they can use in a Flash website, a game, or even an animation. This tutorial does not require any pre-requisite knowledge.</p></blockquote>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Creating a custom cursor in Flash using AS3.0" href="http://www.republicofcode.com/tutorials/flash/as3customcursor/" target="_blank">Creating a custom cursor in Flash using ActionScript 3.0</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> CS3 and above<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/creating-a-custom-cursor-using-flash-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying X and Y position of mouse in Flash</title>
		<link>http://gotoandlearnflash.com/displaying-x-and-y-position-of-mouse-in-flash/</link>
		<comments>http://gotoandlearnflash.com/displaying-x-and-y-position-of-mouse-in-flash/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 20:42:41 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Basic]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=41</guid>
		<description><![CDATA[Short tutorial that shows you how to display the x and y coordinates of the users mouse as it moves around the Flash stage. Editor&#8217;s review: Nice, easy to follow tutorial that shows how to display the mouses x and y position of the mouse as the user moves the pointer around the Flash stage. [...]]]></description>
			<content:encoded><![CDATA[<p>Short tutorial that shows you how to display the x and y coordinates of the users mouse as it moves around the Flash stage.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-41"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Nice, easy to follow tutorial that shows how to display the mouses x and y position of the mouse as the user moves the pointer around the Flash stage. Provides 2 variations of simple ActionScript code to accomplish the same task.</p>
<blockquote><p>Author&#8217;s Quote:</p>
<p>This Flash tutorial will teach you how to display the x and y position of the mouse, so when you move your mouse on the stage it keeps track of the position and updates as you move. This tutorial uses the _xmouse and _ymouse properties to return the x and y coordinates of the mouse position.</p></blockquote>
<p>This tutorial also gives a brief intro to the use of dynamic text in Flash, which is needed in order for the actual coordinates to display as the mouse moves around on the stage. A great tutorial for newbies to Flash and ActionScript 2.0.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Displaying x and y coordinates in Flash" href="http://ilike2flash.blogspot.com/2009/01/position-of-mouse.html" target="_blank">Displaying Position of Mouse in Flash</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> All<br />
<strong>ActionScript:</strong> 2.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/displaying-x-and-y-position-of-mouse-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating A Rollover Button In Flash</title>
		<link>http://gotoandlearnflash.com/creating-a-rollover-button-in-flash/</link>
		<comments>http://gotoandlearnflash.com/creating-a-rollover-button-in-flash/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 20:31:57 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Basic]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=39</guid>
		<description><![CDATA[This is a short Flash tutorial for people who are REALLY beginning to learn Flash. Editor&#8217;s review: Very short, easy to follow high level explanation of how to create a button symbol in Flash. Very detailed with plenty of images to demonstrate how to draw a simple Flash shape, convert it to a symbol, and [...]]]></description>
			<content:encoded><![CDATA[<p>This is a short Flash tutorial for people who are REALLY beginning to learn Flash.</p>
<p><strong>Editor&#8217;s review: </strong><span id="more-39"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Very short, easy to follow high level explanation of how to create a button symbol in Flash. Very detailed with plenty of images to demonstrate how to draw a simple Flash shape, convert it to a symbol, and apply a basic rollover effect to the button.</p>
<blockquote><p>Author&#8217;s Quote:</p>
<p>In this tutorial you will see how to build a simple rollover button.</p></blockquote>
<p>Straight forward, and to the point, a great little tutorial to check out for those beginners out there who are just starting with Flash.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Creating a rollover button in Flash" href="http://www.toxiclab.org/tutorial.asp?ID=22" target="_blank">Creating a Rollover Button in Flash</a></p>
<p><strong>Additional Info</strong><br />
<strong>Version:</strong> All<br />
<strong>ActionScript:</strong> N/A<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> Yes<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/creating-a-rollover-button-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial: Drawing curved lines with AS3</title>
		<link>http://gotoandlearnflash.com/flash-tutorial-drawing-curved-lines-with-as3/</link>
		<comments>http://gotoandlearnflash.com/flash-tutorial-drawing-curved-lines-with-as3/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 02:19:58 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=38</guid>
		<description><![CDATA[Simple ActionScript 3.0 tutorial that demonstrates how to create a line in Flash ActionScript 3.0 using only code. Editor&#8217;s Review: Another very simple to follow tutorial from www.flashessential.com on how to draw curved lines using only Flash ActionScript 3.0 code. Sort of a &#8220;Part 2&#8243; to their tutorial on Drawing Lines With AS3, this is [...]]]></description>
			<content:encoded><![CDATA[<p>Simple ActionScript 3.0 tutorial that demonstrates how to create a line in Flash ActionScript 3.0 using only code.</p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-38"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>Another very simple to follow tutorial from www.flashessential.com on how to draw curved lines using only Flash ActionScript 3.0 code. Sort of a &#8220;Part 2&#8243; to their tutorial on <a href="http://gotoandlearnflash.com/flash-tutorial-drawing-lines-with-as3/">Drawing Lines With AS3</a>, this is another great starter tutorial for individuals looking to start to learn Flash AS3. Very clear, and nice descriptions to explain each line of code. Simple lines of code, and you can change the colors/coordinates to do your own experimenting.</p>
<p><strong>Note</strong>: If you copy and paste the code from the page, you will need to keystrok the &#8220;x&#8221; in line 3 where it says &#8220;0&#215;333333&#8243;. The &#8220;x&#8221; in the example code does not translate correctly into the Flash Actions panel. Took me a couple minutes to figure it out, but once I changed that, it worked great.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Drawing curved lines in ActionScript 3.0" href="http://www.flashessential.com/archives/94" target="_blank">AS3 Guide Drawing Curves</a></p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> Flash CS3 and up<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/flash-tutorial-drawing-curved-lines-with-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limit movements on the stage</title>
		<link>http://gotoandlearnflash.com/limit-movements-on-the-stage/</link>
		<comments>http://gotoandlearnflash.com/limit-movements-on-the-stage/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 17:06:17 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=35</guid>
		<description><![CDATA[Flash tutorial that shows how to move an object on the stage, but will stop from moving when object hits the top and sides of the stage. Editor&#8217;s Review: This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below. Authors quote: This flash tutorial will teach [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to move an object on the stage, but will stop from moving when object hits the top and sides of the stage.</p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-35"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below.</p>
<p>Authors quote:</p>
<blockquote><p>This flash tutorial will teach you how to limit the keyboard movements of an object on the stage. This means you can use the keyboard controls to move your movie clip instance on the stage, but you will not be able to go over edge of the stage.</p></blockquote>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Limit movements on the stage" href="http://ilike2flash.blogspot.com/2008/11/limit-movements-on-stage.html" target="_blank">Limit movements on the stage</a></p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> Flash 5 and up<br />
<strong>ActionScript:</strong> 2.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> No<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/limit-movements-on-the-stage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a preloader in Flash</title>
		<link>http://gotoandlearnflash.com/creating-a-preloader-in-flash/</link>
		<comments>http://gotoandlearnflash.com/creating-a-preloader-in-flash/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 01:53:39 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Basic]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=34</guid>
		<description><![CDATA[Flash tutorial that shows how to create a simple Flash preloader using a mask effect. Editor&#8217;s Review: This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below. Authors quote: Using this lesson, you will see how to create star flash preloader using the action script code. [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to create a simple Flash preloader using a mask effect.</p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-34"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below.</p>
<p>Authors quote:</p>
<blockquote><p>Using this lesson, you will see how to create star flash preloader using the action script code. To make this lesson, we have to use mask in flash.</p></blockquote>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Creating a preloader in Flash" href="http://www.flashfridge.com/tutorial.asp?ID=55" target="_blank">Star Flash Preloader</a></p>
<p><strong>Additional Info<br />
Level: Intermediate</strong><br />
<strong>Version:</strong> Flash 5 and up<br />
<strong>ActionScript:</strong> 2.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> Yes<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/creating-a-preloader-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweening With Code in Flash ActionScript 3.0</title>
		<link>http://gotoandlearnflash.com/tweening-with-code-in-flash-actionscript-30/</link>
		<comments>http://gotoandlearnflash.com/tweening-with-code-in-flash-actionscript-30/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 01:48:01 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Intermediate]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=33</guid>
		<description><![CDATA[Flash tutorial that discusses Tweening using both keyframe animation (Motion Tweens) or using the tween class in Flash ActionScript 3.0. Editor&#8217;s Review: This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below. Authors quote: You have two ways of creating animations in Flash. You can create [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that discusses Tweening using both keyframe animation (Motion Tweens) or using the tween class in Flash ActionScript 3.0.</p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-33"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7252304256657784";
/* 468x15, within post */
google_ad_slot = "1529686063";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>This tutorial has not yet been reviewed. Please feel free to add your own review in the comments below.</p>
<p>Authors quote:</p>
<blockquote><p>You have two ways of creating animations in Flash. You can create them using the timeline, or you can create them using code. For code-based animations, I&#8217;ve always written about using variants of EnterFrame. One thing I&#8217;ve never talked about is using the tween class to create animations, and it&#8217;s time to change that with this tutorial&#8230;.</p>
<p>&#8230; In this tutorial, I will explain how to use the Tween class to create an animation using code. Before diving into the code though, let&#8217;s look at tweening using the timeline.</p></blockquote>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Creating Motion Tweens using ActionScript 3.0" href="http://www.kirupa.com/developer/flashcs3/tweening_with_code_pg1.htm" target="_blank">Tweening with Code</a></p>
<p><strong>Additional Info<br />
Level: </strong>Intermediate<br />
<strong>Version:</strong> CS3<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> Yes<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/tweening-with-code-in-flash-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

