<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Flash Platform Development &#187; flash</title>
	<atom:link href="http://flashdevelopment.wordpress.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://flashdevelopment.wordpress.com</link>
	<description>EMPOWERING FLASH DEVELOPERS</description>
	<lastBuildDate>Sat, 14 Nov 2009 16:10:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='flashdevelopment.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/9b18cf8cfed02b3fa9043b45ebc069f9?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Flash Platform Development &#187; flash</title>
		<link>http://flashdevelopment.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://flashdevelopment.wordpress.com/osd.xml" title="Flash Platform Development" />
		<item>
		<title>ActionScript 3 Classes: Part 1</title>
		<link>http://flashdevelopment.wordpress.com/2008/06/03/actionscript-3-classes-part-1/</link>
		<comments>http://flashdevelopment.wordpress.com/2008/06/03/actionscript-3-classes-part-1/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 17:48:54 +0000</pubDate>
		<dc:creator>bmorrise</dc:creator>
				<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[classes]]></category>
		<category><![CDATA[Actionscript Classes]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash actionscript]]></category>

		<guid isPermaLink="false">http://flashdevelopment.wordpress.com/?p=28</guid>
		<description><![CDATA[ActionScript 3 is an object oriented programming language. I&#8217;m going to explain what that means in a minute, but there is also a good definition at Wikipedia. So far there are two things that we&#8217;ve talked about that are used in objects. The first is variables and the second is functions.
Objects contain both of these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=28&subd=flashdevelopment&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>ActionScript 3 is an object oriented programming language. I&#8217;m going to explain what that means in a minute, but there is also a good definition at <a href="http://en.wikipedia.org/wiki/Object_oriented">Wikipedia</a>. So far there are two things that we&#8217;ve talked about that are used in objects. The first is variables and the second is functions.</p>
<p>Objects contain both of these things. To think of an object in programming I&#8217;m going to use a real world example:a ball. Here is a list of the properties of a ball:</p>
<p>Color<br />
Diameter<br />
Weight<br />
Texture</p>
<p>And here are some of the things that a ball might do:</p>
<p>Bounce<br />
Pop<br />
Inflate</p>
<p>So, this ball is our object. Now let&#8217;s convert this over to code:</p>
<pre class="brush: java;">
//Ball.as
package
{
    public class Ball
    {
        public var color:String;
        public var diameter:Number;
        public var weight:Number;
        public var texture:String;

        public function Ball() {
        }

        public function bounce()
        {
            //Bounce code
        }

        public function pop()
        {
            //Pop code
        }

        public function inflate()
        {
            //Inflate code
        }
    }
}
</pre>
<p>Unfortunately, the source code here comes out unformated in WordPress, but imagine it will indentations an so forth. Okay, so now that we have created our Ball class, what do we do with it? From our class comes an object like so:</p>
<pre class="brush: java;">
var myBall:Ball = new Ball();
myBall.color = &quot;red&quot;;
myBall.diameter = 10;
myBall.inflate();
trace(myBall.color);
</pre>
<p>There are some examples of creating a new ball and setting some of its properties and calling some of its methods. A method is what we call the function that is part of the object.</p>
<p>Okay, let&#8217;s look at the code line by line:</p>
<p>First we have the <strong>package</strong> block which tells us where the class file is located. the Ball.as file should be in the same directory so we just use package. If we would have created another directory where the BallTutorial.fla file is located called classes then we would have used this:</p>
<p><code>package classes</code></p>
<p>You can even nest files further. We could have created the following directory structure:</p>
<p>\classes\other\something\Ball.as</p>
<p>In this case we would use:</p>
<p><code>package classes.other.something</code></p>
<p>The reason we do this is because we could have two classes with exactly the same name, but put them in different packages. Remember, the package has to reflect the file location or it won&#8217;t work.</p>
<p>Next we have the <strong>public class Ball</strong> block. This declares our class as being public. I&#8217;ll explain what this means in Part 2. The class is called Ball. It&#8217;s important to note that the file name need to be the same as the class name, which is why we called this file Ball.as.</p>
<p>The next few lines is where we define the properties of the class which are variables. The are defined in a similar fashion as we&#8217;ve defined variables before, but this time we use the public keyword.</p>
<p>Next we have the method definitions. The methods are just function declarations that we have done before, but we&#8217;ve also declared these as being public.</p>
<p>One thing to note is that we have a function called Ball. This is called the constructor. The constructor is a function that is automatically called when we instantiate the object. Instantiating the object is just the act of declaring a new Ball variable. You can see how this works by putting a trace statement in the constructor before you test the code. You&#8217;ll see that the trace statement is executed automatically without having to call the Ball function. The constructor is case sensitive, so make sure you get it right.</p>
<p>And that&#8217;s our class definition. As you can see in the second block we access the properties and methods with the dot operator: myBall.color or myBall.inflate() are examples.</p>
<p>In order to get to work you&#8217;ll want to create a new Flash file and call it BallTutorial.fla. Then you&#8217;ll want to paste the second block of code into the first action pane. Then create a new file called Ball.as and make sure you save it in the same directory as the BallTutorial.fla file. When that is done you should be able to run the BallTutorial.fla file and see the trace output.</p>
<p>The source code for this tutorial can be found here: <a href="http://www.morrise.com/flash_tutorials/BallTutorial.zip">BallTutorial.zip</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flashdevelopment.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flashdevelopment.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flashdevelopment.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flashdevelopment.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flashdevelopment.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flashdevelopment.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flashdevelopment.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flashdevelopment.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flashdevelopment.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flashdevelopment.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flashdevelopment.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flashdevelopment.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=28&subd=flashdevelopment&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flashdevelopment.wordpress.com/2008/06/03/actionscript-3-classes-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e395f9af3def76cd3f102b3d17c16f7?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bmorrise</media:title>
		</media:content>
	</item>
		<item>
		<title>Event Listeners</title>
		<link>http://flashdevelopment.wordpress.com/2008/06/02/event-listeners/</link>
		<comments>http://flashdevelopment.wordpress.com/2008/06/02/event-listeners/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 19:08:23 +0000</pubDate>
		<dc:creator>bmorrise</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://flashdevelopment.wordpress.com/?p=25</guid>
		<description><![CDATA[Event listeners are an important part of Flash. What they allow you to do is to &#8220;listen&#8221; for an event that occurs on a specific object. For example, one event that often occurs in Flash is a button getting clicked. When a button is clicked the button object dispatches an event telling flash that is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=25&subd=flashdevelopment&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Event listeners are an important part of Flash. What they allow you to do is to &#8220;listen&#8221; for an event that occurs on a specific object. For example, one event that often occurs in Flash is a button getting clicked. When a button is clicked the button object dispatches an event telling flash that is was clicked. Often times we want to respond to a click and function. Say we have a window that pops up and on the window there is a cancel button. We want the window to close when the cancel button is clicked.  Here is the code:<br />
<code><br />
cancelButton.addEventListener(MouseEvent.CLICK, handleClick);<br />
function handleClick(event:MouseEvent):void<br />
{<br />
//Write the code here that closes the window<br />
}</code></p>
<p>In this example I have added a button to the window and given it the instance name cancelButton. This allows me to listen to that button and respond to the events.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flashdevelopment.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flashdevelopment.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flashdevelopment.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flashdevelopment.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flashdevelopment.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flashdevelopment.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flashdevelopment.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flashdevelopment.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flashdevelopment.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flashdevelopment.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flashdevelopment.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flashdevelopment.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=25&subd=flashdevelopment&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flashdevelopment.wordpress.com/2008/06/02/event-listeners/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e395f9af3def76cd3f102b3d17c16f7?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bmorrise</media:title>
		</media:content>
	</item>
		<item>
		<title>Building a Flash Video Player: Part One</title>
		<link>http://flashdevelopment.wordpress.com/2008/04/29/building-a-flash-video-player-part-one/</link>
		<comments>http://flashdevelopment.wordpress.com/2008/04/29/building-a-flash-video-player-part-one/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 03:54:07 +0000</pubDate>
		<dc:creator>bmorrise</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash video player]]></category>
		<category><![CDATA[video player]]></category>

		<guid isPermaLink="false">http://flashdevelopment.wordpress.com/?p=22</guid>
		<description><![CDATA[This is part 1 in a multiple part series about building a Flash video player. In this tutorial we start building the player control bar.
Click here to get the source code for this tutorial
Note: You can watch the videos in full screen by clicking the full screen button on the tutorial’s control bar.

   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=22&subd=flashdevelopment&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is part 1 in a multiple part series about building a Flash video player. In this tutorial we start building the player control bar.</p>
<p><a title="Video Player - Tutorial 1" href="http://www.morrise.com/VideoPlayer1.zip" target="_blank">Click here to get the source code for this tutorial</a></p>
<p><span style="color:#ff0000;">Note: </span><span style="color:#ff0000;">You can watch the videos in full screen by clicking the full screen button on the tutorial’s control bar.</span></p>
<p><a href="http://www.morrise.com/flash_tutorials/launch_tutorial.php?url=http://www.morrise.com/flash_tutorials/flash_tutorial_04282008.mov" target="_blank"><img class="alignnone size-medium wp-image-8" src="http://flashdevelopment.files.wordpress.com/2008/04/watch_tutorial.png?w=168&amp;h=42&#038;h=42" alt="Watch the Tutorial" width="168" height="42" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flashdevelopment.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flashdevelopment.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flashdevelopment.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flashdevelopment.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flashdevelopment.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flashdevelopment.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flashdevelopment.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flashdevelopment.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flashdevelopment.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flashdevelopment.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flashdevelopment.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flashdevelopment.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=22&subd=flashdevelopment&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flashdevelopment.wordpress.com/2008/04/29/building-a-flash-video-player-part-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e395f9af3def76cd3f102b3d17c16f7?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bmorrise</media:title>
		</media:content>

		<media:content url="http://flashdevelopment.files.wordpress.com/2008/04/watch_tutorial.png?w=168&#38;h=42" medium="image">
			<media:title type="html">Watch the Tutorial</media:title>
		</media:content>
	</item>
		<item>
		<title>Basic ActionScript 3</title>
		<link>http://flashdevelopment.wordpress.com/2008/04/16/basic-actionscript-3/</link>
		<comments>http://flashdevelopment.wordpress.com/2008/04/16/basic-actionscript-3/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 19:03:29 +0000</pubDate>
		<dc:creator>bmorrise</dc:creator>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[action script]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://flashdevelopment.wordpress.com/?p=14</guid>
		<description><![CDATA[This tutorial is probably only for those who don&#8217;t have much programming experience. I show you how to open the Actions panel that we use to input ActionScript. I also show how to use String variables and how to set the text of a Text Field dynamically. I also show how to create a simple [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=14&subd=flashdevelopment&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This tutorial is probably only for those who don&#8217;t have much programming experience. I show you how to open the Actions panel that we use to input ActionScript. I also show how to use String variables and how to set the text of a Text Field dynamically. I also show how to create a simple function.</p>
<p><span style="color:#ff0000;">Note: </span><span style="color:#ff0000;">You can watch the videos in full screen by clicking the full screen button on the tutorial’s control bar.</span></p>
<p><a href="http://www.morrise.com/flash_tutorials/launch_tutorial.php?url=http://www.morrise.com/flash_tutorials/flash_tutorial_04162008.mov" target="_blank"><img class="alignnone size-medium wp-image-8" src="http://flashdevelopment.files.wordpress.com/2008/04/watch_tutorial.png?w=168&amp;h=42&#038;h=42" alt="Watch the Tutorial" width="168" height="42" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flashdevelopment.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flashdevelopment.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flashdevelopment.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flashdevelopment.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flashdevelopment.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flashdevelopment.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flashdevelopment.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flashdevelopment.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flashdevelopment.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flashdevelopment.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flashdevelopment.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flashdevelopment.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=14&subd=flashdevelopment&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flashdevelopment.wordpress.com/2008/04/16/basic-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e395f9af3def76cd3f102b3d17c16f7?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bmorrise</media:title>
		</media:content>

		<media:content url="http://flashdevelopment.files.wordpress.com/2008/04/watch_tutorial.png?w=168&#38;h=42" medium="image">
			<media:title type="html">Watch the Tutorial</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Adobe Flash CS3?</title>
		<link>http://flashdevelopment.wordpress.com/2008/04/14/what-is-adobe-flash-cs3/</link>
		<comments>http://flashdevelopment.wordpress.com/2008/04/14/what-is-adobe-flash-cs3/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 23:07:46 +0000</pubDate>
		<dc:creator>bmorrise</dc:creator>
				<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cs3]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://flashdevelopment.wordpress.com/?p=4</guid>
		<description><![CDATA[Adobe Flash CS3 is a Flash development toolkit that allows you to add animation and interactivity to web pages. Flash technology is commonly used to create animations, advertisements, interactive web components, integrated media players, and rich internet applications.
As of this post, Flash CS3 is the current version of the Flash development tool created by Adobe. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=4&subd=flashdevelopment&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a title="Adobe Flash CS3" href="http://www.adobe.com/products/flash/?ogn=EN_US-gntray_prod_flash_home">Adobe Flash CS3</a> is a Flash development toolkit that allows you to add animation and interactivity to web pages. Flash technology is commonly used to create animations, advertisements, interactive web components, integrated media players, and rich internet applications.</p>
<p>As of this post, Flash CS3 is the current version of the Flash development tool created by Adobe. It has various improvements over it&#8217;s predecessor Flash 8, most notably the upgrade from ActionScript 2 to ActionScript 3.</p>
<p>Most website currently employ some Flash technology. If you&#8217;ve ever been to a video sharing website, e.g. Youtube, you&#8217;ve seen Flash in action. YouTube&#8217;s embedded video player was built using Flash.</p>
<p>I hope you enjoy my series of posts and remember that if you ever have questions, feel free to ask them in the comments section of each post.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/flashdevelopment.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/flashdevelopment.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/flashdevelopment.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/flashdevelopment.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/flashdevelopment.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/flashdevelopment.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/flashdevelopment.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/flashdevelopment.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/flashdevelopment.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/flashdevelopment.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/flashdevelopment.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/flashdevelopment.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=flashdevelopment.wordpress.com&blog=3482291&post=4&subd=flashdevelopment&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://flashdevelopment.wordpress.com/2008/04/14/what-is-adobe-flash-cs3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0e395f9af3def76cd3f102b3d17c16f7?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">bmorrise</media:title>
		</media:content>
	</item>
	</channel>
</rss>