<?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>zedia flash blog &#187; GOASAP</title>
	<atom:link href="http://www.zedia.net/tag/goasap/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zedia.net</link>
	<description>Flash, ActionScript, SEO and everything in between</description>
	<lastBuildDate>Thu, 02 Feb 2012 17:58:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Video tutorial on how to use GOASAP</title>
		<link>http://www.zedia.net/2008/video-tutorial-on-how-to-use-goasap/</link>
		<comments>http://www.zedia.net/2008/video-tutorial-on-how-to-use-goasap/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 03:39:29 +0000</pubDate>
		<dc:creator>zedia.net</dc:creator>
				<category><![CDATA[GOASAP]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.zedia.net/2008/video-tutorial-on-how-to-use-goasap/</guid>
		<description><![CDATA[I have talked a bit about GOASAP, but I didn&#8217;t really have the time to check it out; well mosessupposes made a good video tutorial on how to create your own animation engine. Be sure to check it out because it&#8217;s pretty good.]]></description>
			<content:encoded><![CDATA[<p>I have talked a bit about GOASAP, but I didn&#8217;t really have the time to check it out; well mosessupposes made a <a href="http://go.mosessupposes.com/?p=28" title="GOASAP video tutorial" target="_blank">good video tutorial on how to create your own animation engine</a>. Be sure to check it out because it&#8217;s pretty good.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zedia.net/2008/video-tutorial-on-how-to-use-goasap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TweenLite, Tweener, GOASAP &#124; Fun with animation packages</title>
		<link>http://www.zedia.net/2008/tweenlite-tweener-goasap-fun-with-animation-packages/</link>
		<comments>http://www.zedia.net/2008/tweenlite-tweener-goasap-fun-with-animation-packages/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 01:06:57 +0000</pubDate>
		<dc:creator>zedia.net</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[GOASAP]]></category>
		<category><![CDATA[Tweener]]></category>
		<category><![CDATA[TweenLite]]></category>

		<guid isPermaLink="false">http://www.zedia.net/2008/tweenlite-tweener-goasap-fun-with-animation-packages/</guid>
		<description><![CDATA[I have been speaking a lot about Tweener these days and for a good reason; it&#8217;s a really good as3 animation library. I can&#8217;t say I have been having trouble with it but I found evidence from different sources that it might not be the best animation package for what I want to do. What [...]]]></description>
			<content:encoded><![CDATA[<p>I have been speaking a lot about <a href="http://osflash.org/tweener" title="Tweener" target="_blank">Tweener</a> these days and for a good reason; it&#8217;s a really good as3 animation library. I can&#8217;t say I have been having trouble with it but I found evidence from different sources that it might not be the best animation package for what I want to do.</p>
<p>What I am doing is mostly websites and in those website I use ActionScript to make everything move; I rarely use the timeline. All of my tweens are at most 1 second long but most of the time they last about 0.5 second. I liked <a href="http://osflash.org/tweener" title="Tweener" target="_blank">Tweener</a> because it was way better than Adobe&#8217;s Tween classes but I found from 2 different sources (<a href="http://blog.greensock.com/tweening-speed-test/" title="Tween engine speed comparison" target="_blank">TweenLite</a>, <a href="http://www.goasap.org/info.html" title="Benchmark As3 Tween" target="_blank">GOASAP</a>) that <a href="http://blog.greensock.com/tweenliteas3" title="TweenLite" target="_blank">TweenLite</a> is faster for small tweens than <a href="http://osflash.org/tweener" title="Tweener" target="_blank">Tweener</a>. You might know that already, but being fast is one of the most important attribute for me in a tweening engine. Not so much because I use too much animation at the same time but more because that when I start Tweens, I don&#8217;t want them to eat all of the cpu, I want them too leave as much processing power for other stuff like timeline animations, video etc. These is all to say that I am changing all my code from <a href="http://osflash.org/tweener" title="Tweener" target="_blank">Tweener</a> to <a href="http://blog.greensock.com/tweenliteas3" title="TweenLite" target="_blank">Tweenlite</a> (that I had previously changed from Adobe Tween classes to <a href="http://osflash.org/tweener" title="Tweener" target="_blank">Tweener</a>) because I need the extra speed badly.</p>
<p>Something came up since I started this project. From the maker of the <a href="http://www.mosessupposes.com/Fuse/" title="Fuse kit" target="_blank">Fuse kit</a> comes <a href="http://go.mosessupposes.com/" title="GO AS3 Animation Platform" target="_blank">GOASAP</a>. Which looks very promissing; it&#8217;s  not an animation package per say, it&#8217;s more like animation package building blocks. Since sometime there is a lot of overhead in animation engine for things that you will never use, <a href="http://www.mosessupposes.com/blog/" title="Moses Supposes" target="_blank">Moses Supposes</a> made us all animation library developers. The <a href="http://go.mosessupposes.com/" title="Go AS3 Animation Platform" target="_blank">GOASAP</a> code base is in AS3 and I can&#8217;t wait to start using it. In the mean time I invite you all to go and start developing your own animation code;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zedia.net/2008/tweenlite-tweener-goasap-fun-with-animation-packages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

