<?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>Flash Speaks Actionscript &#187; SimpleAS3</title>
	<atom:link href="http://flashspeaksactionscript.com/tag/simpleas3/feed/" rel="self" type="application/rss+xml" />
	<link>http://flashspeaksactionscript.com</link>
	<description>Learn and Speak Actionscript</description>
	<lastBuildDate>Sat, 28 Jan 2012 03:11:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>SimpleAS3: It Doesn&#8217;t Get Any Easier Than This!</title>
		<link>http://flashspeaksactionscript.com/simpleas3-it-doesnt-get-any-easier-than-this/</link>
		<comments>http://flashspeaksactionscript.com/simpleas3-it-doesnt-get-any-easier-than-this/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 18:00:11 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[SimpleAS3]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=1680</guid>
		<description><![CDATA[<a title="SimpleAS3 Homepage" href="http://simpleas3.com/" target="_blank">SimpleAS3</a> offers a fresh approach to Flash scripting that helps regular users create interactive experiences with less code than standard AS3.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fsimpleas3-it-doesnt-get-any-easier-than-this%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FqXKICm%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SimpleAS3%3A%20It%20Doesn%27t%20Get%20Any%20Easier%20Than%20This%21%20%23SimpleAS3%22%20%7D);"></div>
<h3>What is SimpleAS3?</h3>
<p><a title="SimpleAS3 Homepage" href="http://code.google.com/p/simpleas3/" target="_blank">SimpleAS3</a> offers a <em>fresh approach</em> to Flash scripting that helps regular users create interactive experiences with <em>less code</em> than standard AS3. Typical daily tasks are easier when the compiler is <em>not as strict</em>, and you can do your job without constantly searching for the meaning of a million obscure errors.</p>
<h3>Example Task: Loading An External Image And Making it Link to a Website Upon Clicking It</h3>
<p><strong>Standard AS3 Code: </strong></p>
<pre class="brush: as3; title: ; notranslate">var imageLoader:Loader = new Loader();
this.addChild( imageLoader );

var request:URLRequest = new URLRequest( &amp;quot;images/button.png&amp;quot; );
imageLoader.load( request );

loader.addEventListener( MouseEvent.CLICK, imageClickHandler );
function imageClickHandler( event:MouseEvent ):void
{
	var request:URLRequest = new URLRequest( &amp;quot;http://www.example.com/&amp;quot; );
	navigateToURL( request, &amp;quot;_self&amp;quot; );
}</pre>
<p><strong>Using SimpleAS3 Syntax:</strong></p>
<pre class="brush: as3; title: ; notranslate">var loader = this.loadChild( &amp;quot;images/button.png&amp;quot; );

loader.onClick(function()
{
	getURL( &amp;quot;http://www.example.com/&amp;quot;, &amp;quot;_self&amp;quot; );
});</pre>
<h3>Understanding the Difference:</h3>
<p>There obviously a lot less code when using SimpleAS3 and that&#8217;s all in a nutshell.  If you are a non-developer or simply don&#8217;t have time to learn AS3 from scratch, I think SimpleAS3 will benefit you.  However, if you are a Flash developer, I&#8217;d recommend stick to learning AS3 from scratch.</p>
<h3>Additional Resources:</h3>
<ul>
<li><a title="Download SimpleAS3" href="http://code.google.com/p/simpleas3/downloads/list" target="_blank">Download</a> the SimpleAS3 Component</li>
<li><a title="Learn More on SimpleAS3" href="http://code.google.com/p/simpleas3/" target="_blank">Learn more</a> on SimpleAS3</li>
<li><a title="SimpleAS3 Documetation" href="http://code.google.com/p/simpleas3/w/list" target="_blank">SimpleAS3 Documentation</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/simpleas3-it-doesnt-get-any-easier-than-this/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 409/422 objects using disk: basic

Served from: flashspeaksactionscript.com @ 2012-02-07 22:30:42 -->
