<?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; ActionScript 3.0</title>
	<atom:link href="http://gotoandlearnflash.com/category/actionscript-30/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: 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>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>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>
		<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>
		<item>
		<title>Creating an image gallery using XML and AS3.0</title>
		<link>http://gotoandlearnflash.com/creating-an-image-gallery-using-xml-and-as30/</link>
		<comments>http://gotoandlearnflash.com/creating-an-image-gallery-using-xml-and-as30/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 22:26:48 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Intermediate]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=26</guid>
		<description><![CDATA[Flash tutorial on how to create a simple image gallery using an XML file Flash ActionScript 3.0. View Tutorial: Creating an XML Gallery with 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: For any dynamic Flash project, XML [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial on how to create a simple image gallery using an XML file Flash ActionScript 3.0.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Image gallery in Flash" href="http://www.clickpopmedia.com/2008/05/14/creating-an-xml-gallery-with-actionscript-30/" target="_blank">Creating an XML Gallery with ActionScript 3.0<br />
</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-26"></span></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>For any dynamic Flash project, XML will be a powerful tool (&#8230;) I will be talking about how to use Flash and XML to make a simple, yet superfly, gallery.</p></blockquote>
<blockquote><p>OK, now that we’ve looked at the XML we need to make it work with ActionScript 3. In Adobe Flash CS3 I created a new AS3 FLA doc and a new AS doc. In the FLA I simply created some very basic MovieClips for my left and right arrows and I placed a TextField at the bottom of my stage (which I set to 600 X 700 with a black background). After naming my instances and setting up the Document Class linkage I was done with the FLA side of thing and the rest is ActionScript.</p></blockquote>
<p><strong>Additional Info<br />
Level: Intermediate</strong><br />
<strong>Version:</strong> CS3<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> Yes (Flash and XML)<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/creating-an-image-gallery-using-xml-and-as30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custon Scrollbar in Flash AS3</title>
		<link>http://gotoandlearnflash.com/custon-scrollbar-in-flash-as3/</link>
		<comments>http://gotoandlearnflash.com/custon-scrollbar-in-flash-as3/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 22:13:47 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash Tutorial]]></category>
		<category><![CDATA[Level: Intermediate]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[custom scrollbar]]></category>
		<category><![CDATA[flash coding]]></category>
		<category><![CDATA[flash scroll]]></category>
		<category><![CDATA[Learn Flash]]></category>

		<guid isPermaLink="false">http://gotoandlearnflash.com/?p=25</guid>
		<description><![CDATA[Flash tutorial that shows how to create a custom scrollbar with Flash ActionScript 3.0. View Tutorial: Custom Scrollbar in Flash AS3 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 is a simple and quick tutorial for creating a custom [...]]]></description>
			<content:encoded><![CDATA[<p>Flash tutorial that shows how to create a custom scrollbar with Flash ActionScript 3.0.</p>
<p><strong>View Tutorial:</strong> <a title="Flash Tutorial: Custom Scrollbar in AS3" href="http://www.flashessential.com/archives/17" target="_blank">Custom Scrollbar in Flash AS3<br />
</a></p>
<p><strong>Editor&#8217;s Review: </strong><span id="more-25"></span></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 is a simple and quick tutorial for creating a custom scroll bar. We’ll dynamically load in our text using an array in Actionscript then we’ll connect a custom scrollbar. In the files below we have three Movie Clips on the stage, two hands and a square. The two hands will act as our pointers allowing us to gradually scroll up and down. The square will act as our slider allowing us to slide the content up or down as you would do with a normal scrollbar slider.</p></blockquote>
<p><strong>Additional Info<br />
Level: Intermediate</strong><br />
<strong>Version:</strong> CS3<br />
<strong>ActionScript:</strong> 3.0<br />
<strong>Online example:</strong> Yes<br />
<strong>Source files available:</strong> Yes (start and finish)<br />
<strong>Video Tutorial:</strong> No</p>
]]></content:encoded>
			<wfw:commentRss>http://gotoandlearnflash.com/custon-scrollbar-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

