<?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; Level: Beginner</title>
	<atom:link href="http://gotoandlearnflash.com/category/level-beginner/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>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>Flash Tutorial: Drawing lines with AS3</title>
		<link>http://gotoandlearnflash.com/flash-tutorial-drawing-lines-with-as3/</link>
		<comments>http://gotoandlearnflash.com/flash-tutorial-drawing-lines-with-as3/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 02:06:29 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Level: Beginner]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=37</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: Pretty simple to follow tutorial on how to draw lines using only Flaxh ActionScript 3.0 code. Great starter tutorial for individuals looking to start to learn Flash AS3. Very clear, and nice descriptions (and illustrations) [...]]]></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-37"></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 simple to follow tutorial on how to draw lines using only Flaxh ActionScript 3.0 code. Great starter tutorial for individuals looking to start to learn Flash AS3. Very clear, and nice descriptions (and illustrations) 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 lines in ActionScript 3.0" href="http://www.flashessential.com/archives/91" target="_blank">AS3 Guide Drawing Lines</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-lines-with-as3/feed/</wfw:commentRss>
		<slash:comments>1</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>Moving movieclips with mouse and hitTest</title>
		<link>http://gotoandlearnflash.com/moving-movieclips-with-mouse-and-hittest/</link>
		<comments>http://gotoandlearnflash.com/moving-movieclips-with-mouse-and-hittest/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 14:47:44 +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=32</guid>
		<description><![CDATA[Flash tutorial that shows how to allow the user to move a movieclip with their mouse, and detect when it hits another movieclip using hitTest method in Flash. Editor&#8217;s Review: Short, easy tutorial to show how to move a movie clip with the mouse in Flash. Also talks briefly about the how to detect when [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to allow the user to move a movieclip with their mouse, and detect when it hits another movieclip using hitTest method in Flash.</p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-32"></span></p>
<p>Short, easy tutorial to show how to move a movie clip with the mouse in Flash. Also talks briefly about the how to detect when a clip touches another clip using the hitTest() method in Flash. While this tutorial isn&#8217;t meant to show you how to create or draw the clips used for the example, the way it explains how to set up the clips is a little confusing. However, if you know enough about Flash to draw and create symbols, then this is an easy tutorial to show you how to add a little interactivity to your Flash projects. One important note about hitTest (aka collision detection). The &#8220;hit&#8221; area is the bounding box of your symbol. So, in the case of this tutorial, the hitTest applies even when VISUALLY the objects are not touching (since the tutorial uses circular shapes as it&#8217;s symbols). While the tutorial is still relevant, and is still a good lesson on hitTest, I think its important to point that out to avoid users thinking they might have made a mistake</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Flash Interactivity and hitTest method" href="http://www.simpleflashblog.com/2007/11/26/interactivity-in-flash-using-hittest-method/" target="_blank">Interactivity in Flash using hitTest() method</a></p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> 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/moving-movieclips-with-mouse-and-hittest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool mouse follow animation in Flash</title>
		<link>http://gotoandlearnflash.com/cool-mouse-follow-animation-in-flash/</link>
		<comments>http://gotoandlearnflash.com/cool-mouse-follow-animation-in-flash/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 18:25:54 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>
		<category><![CDATA[custom mouse]]></category>
		<category><![CDATA[Flash Animation]]></category>
		<category><![CDATA[mouse follow]]></category>
		<category><![CDATA[mouse trail effect]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=31</guid>
		<description><![CDATA[Flash tutorial that shows how to create a neat little circle trail that follows your mouse. View Tutorial: Mouse Dragging Editor&#8217;s Review: Very short, easy to follow Flash tutorial to create a neat little animation of circles that follow the users mouse as it moves around the Flash stage. Well written with commented code so [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to create a neat little circle trail that follows your mouse.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Mouse follow effect" href="http://www.webzo.org/tutorials/flash/mouse-dragging.php" target="_blank">Mouse Dragging</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-31"></span></p>
<p>Very short, easy to follow Flash tutorial to create a neat little animation of circles that follow the users mouse as it moves around the Flash stage. Well written with commented code so it&#8217;s easy to follow along.</p>
<p>One note is the first step says:</p>
<blockquote><p>First create two Movie Clip; one is for the smaller circle you can see above and the other for the rest of the circles.</p></blockquote>
<p>Not sure why you need 2 movie clips&#8230; I just used one and changed the size of each one on the stage using the Transform Pallette. Either way, it&#8217;s still a short tutorial with a nice effect and leaves a lot of room for user experimentation to create more advanced mouse-trail effects.</p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> 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/cool-mouse-follow-animation-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Shine Effect in Flash</title>
		<link>http://gotoandlearnflash.com/creating-a-shine-effect-in-flash/</link>
		<comments>http://gotoandlearnflash.com/creating-a-shine-effect-in-flash/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 18:02:22 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>
		<category><![CDATA[Flash Animation]]></category>
		<category><![CDATA[flash beginner]]></category>
		<category><![CDATA[Learn Flash]]></category>
		<category><![CDATA[Sparkle effect]]></category>
		<category><![CDATA[star effect]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=30</guid>
		<description><![CDATA[Flash tutorial that shows how to create an nice little sparkle/shine effect in Flash. View Tutorial: Black Shine Animation Editor&#8217;s Review: Nicely written, well described instruction on how to create a simple shimmer effect to an image. Not really the most exceptional Flash effect, but it&#8217;s definitely worth checking out. Personally, I wouldn&#8217;t use this [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to create an nice little sparkle/shine effect in Flash.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Black Shine Animation" href="http://www.toxiclab.org/tutorial.asp?ID=219" target="_blank">Black Shine Animation<br />
</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-30"></span></p>
<p>Nicely written, well described instruction on how to create a simple shimmer effect to an image. Not really the most exceptional Flash effect, but it&#8217;s definitely worth checking out. Personally, I wouldn&#8217;t use this type of sparkle effect on an photograph, but it might work well on an illustration or cartoon where a &#8220;shine&#8221; or &#8220;sparkle&#8221; effect might be needed (the reason being, it looks illustrated and not natural). So, if you had say a cartoon with woman wearing a diamond ring, this effect might help it shine&#8230; if it were a photograph of a diamond ring, this effect might not work as well. That said, it&#8217;s a great tutorial for beginners to get into Flash animation without ActionScript.</p>
<p>A couple quick notes&#8230; On Step 9 in the tutorial:</p>
<blockquote><p>Step 9</p>
<p>Go back on the first frame and repeat the previouse step.</p></blockquote>
<p>You actually want to go to the first frame and repeat the TWO previous steps (steps 7 AND 8).</p>
<p>Also, the steps for creating the &#8220;shape_mc&#8221; can get a little confusing and there are few images that the author refers to that are missing. My advice is to read each step carefully and don&#8217;t try to rush. The instructions are there, you just need to follow them. Once you get through it once, you&#8217;ll see it&#8217;s really not that complicated.</p>
<p>A lengthy tutorial for a simple effect, but definitely worth the read.</p>
<p><strong>Additional Info<br />
Level: Intermediate</strong><br />
<strong>Version:</strong> 5 and up<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-shine-effect-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Particle effect in ActionScript 3.0</title>
		<link>http://gotoandlearnflash.com/particle-effect-in-actionscript-30/</link>
		<comments>http://gotoandlearnflash.com/particle-effect-in-actionscript-30/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:42:45 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>
		<category><![CDATA[beginner flash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Learn Flash]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=29</guid>
		<description><![CDATA[Nice looking &#8220;particle effect&#8221; in Flash using ActionScript 3.0. View Tutorial: Flash ActionScript 3.0 Fountain (particle effect) tutorial Editor&#8217;s Review: Very short tutorial with some nicely commented code that shows you how to do a colorful particle effect. While this tutorial simply creates a set of colorful circles bouncing up from the bottom of the [...]]]></description>
			<content:encoded><![CDATA[<p>Nice looking &#8220;particle effect&#8221; in Flash using ActionScript 3.0.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Bouncing Text animation in Flash 3.0" href="http://blog.0tutor.com/post.aspx?id=183&amp;titel=Bouncing-text-flash-animation" target="_blank">Flash ActionScript 3.0 Fountain (particle effect) tutorial<br />
</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-29"></span></p>
<p>Very short tutorial with some nicely commented code that shows you how to do a colorful particle effect. While this tutorial simply creates a set of colorful circles bouncing up from the bottom of the stage, if you dissect the code a little and experiment a little bit you can probably find some great uses for this type of effect (personally, I&#8217;m thinking &#8220;sparkler&#8221;&#8230; I&#8217;ll have to play around a little bit when I have the time).</p>
<p>Bottom line, nice effect using a short amount of ActionScript 3.0 code (it only looks like a lot of code since it&#8217;s well commented).</p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> CS3<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/particle-effect-in-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bouncing text animation using ActionScript 3.0</title>
		<link>http://gotoandlearnflash.com/bouncing-text-animation-using-actionscript-30/</link>
		<comments>http://gotoandlearnflash.com/bouncing-text-animation-using-actionscript-30/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:27:08 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Beginner]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[ActionScript 3.0 tutorial]]></category>
		<category><![CDATA[beginner flash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Learn Flash]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=28</guid>
		<description><![CDATA[Flash tutorial on how to create a simple bouncing text animation using ActionScript 3.0. View Tutorial: Bouncing text flash animation Editor&#8217;s Review: Very short Flash tutorial that shows how to create a nice little bouncing text animation. Nicely commented code, and very easy to follow. However, there is one step that the writer didn&#8217;t mention [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial on how to create a simple bouncing text animation using ActionScript 3.0.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Bouncing Text animation in Flash 3.0" href="http://blog.0tutor.com/post.aspx?id=183&amp;titel=Bouncing-text-flash-animation" target="_blank">Bouncing text flash animation<br />
</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-28"></span></p>
<p>Very short Flash tutorial that shows how to create a nice little bouncing text animation. Nicely commented code, and very easy to follow. However, there is one step that the writer didn&#8217;t mention that might cause problems for beginners. After you break apart the text, you need to click on each separate letter and convert it to a movie clip symbol (Modify &gt; Convert to Symbol or F8). Now that each letter is a symbol, you can apply an instance name to each, and then follow the rest of the tutorial as stated.</p>
<p>A little self promotion here, but I found this tutorial particularly interesting because it creates a similar effect created in one of my own Flash tutorials on www.mikestickney.com: <a title="Flash tutorial: Quick and easy zoom effect" href="http://mikestickney.com/wordpress/flash-tutorial-quick-and-easy-zoom-effect-on-mouse-over/">Flash zoom tutorial</a>. Differences being my tutorial is written for AS 2.0 and uses tween animation, while this animation is done purely in ActionScript to get a similar effect.</p>
<p>Overall, pretty easy Flash tutorial worth checking out to get your feet wet with Flash ActionScript 3.0.</p>
<p><strong>Additional Info<br />
Level: </strong>Beginner<br />
<strong>Version:</strong> CS3<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/bouncing-text-animation-using-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

