<?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 2.0</title>
	<atom:link href="http://gotoandlearnflash.com/category/actionscript-20/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>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 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>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>
	</channel>
</rss>

