<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Portfolio</title>
	<atom:link href="http://www.zedia.net/portfolio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zedia.net</link>
	<description>Flash, ActionScript, SEO and everything in between</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:16:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jim</title>
		<link>http://www.zedia.net/portfolio/comment-page-1/#comment-6520</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Sat, 02 Apr 2011 04:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/portfolio/#comment-6520</guid>
		<description>What a great portfolio.  Lots of complex design elements. 
 Is that a picture of Seth Godin in the Twist Image Project?

Keep it up.</description>
		<content:encoded><![CDATA[<p>What a great portfolio.  Lots of complex design elements.<br />
 Is that a picture of Seth Godin in the Twist Image Project?</p>
<p>Keep it up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.zedia.net/portfolio/comment-page-1/#comment-3674</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Mon, 15 Jun 2009 20:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/portfolio/#comment-3674</guid>
		<description>Hey Michael,

The reason the last three letters are going at the same time is because they are in the same function. So the timer waits one second then does the function which has all three tweens that occur all at once.

So to fix this you need to either seperate each tween into a seperate function with each one having a different timer. Or listen for a motion completion event, then do the next tween with a motion completion event, and the next and so on.

You could also try a loop.

&lt;a href=&quot;#comment-3642&quot; rel=&quot;nofollow&quot;&gt;@ Michael Banks&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hey Michael,</p>
<p>The reason the last three letters are going at the same time is because they are in the same function. So the timer waits one second then does the function which has all three tweens that occur all at once.</p>
<p>So to fix this you need to either seperate each tween into a seperate function with each one having a different timer. Or listen for a motion completion event, then do the next tween with a motion completion event, and the next and so on.</p>
<p>You could also try a loop.</p>
<p><a href="#comment-3642" rel="nofollow">@ Michael Banks</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Banks</title>
		<link>http://www.zedia.net/portfolio/comment-page-1/#comment-3642</link>
		<dc:creator>Michael Banks</dc:creator>
		<pubDate>Tue, 09 Jun 2009 02:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/portfolio/#comment-3642</guid>
		<description>Hey man,

Thanks for posting your tutorial on Animation in AS3!  It has been very helpful and I got almost everything done, except I am having one issue.

I am trying to make my name ( B A N X ) drop in one at a time until its done as sort of an intro to my site.  I used the timer in your tutorial but for some reason, it only worked on the second letter dropping in.

So, After B dropped, it would wait 1 second, and then the ANX would drop, rather then having the A Drop, wait one second, the N drop, etc.  Is there a way I can get each timed like that?  I tried putting the function line over each Var but it gives me an error.

Below is the code im using...

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
import flash.utils.Timer;//classes to use Timer
import flash.events.TimerEvent;

var timer:Timer = new Timer(1000, 1);//create the timer
timer.addEventListener(TimerEvent.TIMER, doNextTween);
timer.start();

var myTweenBY:Tween = new Tween(b_logo, &quot;y&quot;, Back.easeOut, -1, 367.4, 3, true);

function doNextTween(e:TimerEvent):void{
  var myTweenAY:Tween = new Tween(a_logo, &quot;y&quot;, Back.easeOut, -1, 303.1, 3, true);

  var myTweenNY:Tween = new Tween(n_logo, &quot;y&quot;, Back.easeOut, -1, 230.4, 3, true);

  var myTweenXY:Tween = new Tween(x_logo, &quot;y&quot;, Back.easeOut, -1, 161.9, 3, true);
}


Thanks!

Michael</description>
		<content:encoded><![CDATA[<p>Hey man,</p>
<p>Thanks for posting your tutorial on Animation in AS3!  It has been very helpful and I got almost everything done, except I am having one issue.</p>
<p>I am trying to make my name ( B A N X ) drop in one at a time until its done as sort of an intro to my site.  I used the timer in your tutorial but for some reason, it only worked on the second letter dropping in.</p>
<p>So, After B dropped, it would wait 1 second, and then the ANX would drop, rather then having the A Drop, wait one second, the N drop, etc.  Is there a way I can get each timed like that?  I tried putting the function line over each Var but it gives me an error.</p>
<p>Below is the code im using&#8230;</p>
<p>import fl.transitions.Tween;<br />
import fl.transitions.easing.*;<br />
import fl.transitions.TweenEvent;<br />
import flash.utils.Timer;//classes to use Timer<br />
import flash.events.TimerEvent;</p>
<p>var timer:Timer = new Timer(1000, 1);//create the timer<br />
timer.addEventListener(TimerEvent.TIMER, doNextTween);<br />
timer.start();</p>
<p>var myTweenBY:Tween = new Tween(b_logo, &#8220;y&#8221;, Back.easeOut, -1, 367.4, 3, true);</p>
<p>function doNextTween(e:TimerEvent):void{<br />
  var myTweenAY:Tween = new Tween(a_logo, &#8220;y&#8221;, Back.easeOut, -1, 303.1, 3, true);</p>
<p>  var myTweenNY:Tween = new Tween(n_logo, &#8220;y&#8221;, Back.easeOut, -1, 230.4, 3, true);</p>
<p>  var myTweenXY:Tween = new Tween(x_logo, &#8220;y&#8221;, Back.easeOut, -1, 161.9, 3, true);<br />
}</p>
<p>Thanks!</p>
<p>Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.zedia.net/portfolio/comment-page-1/#comment-3596</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sat, 30 May 2009 20:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/portfolio/#comment-3596</guid>
		<description>thats a really nice portfolio to be proud of! i hope some day i can build my work up to the same standard! im pretty new really to this game, just a over year or so! 

one thing i have to say though! re:Proment - Le Vistal

the sound file does not play well whilst the swf is downloading! is there a better way of embedeing this! so that it doesnt play until its fully downloaded! still good though!

any way well done! keep up the good work!</description>
		<content:encoded><![CDATA[<p>thats a really nice portfolio to be proud of! i hope some day i can build my work up to the same standard! im pretty new really to this game, just a over year or so! </p>
<p>one thing i have to say though! re:Proment &#8211; Le Vistal</p>
<p>the sound file does not play well whilst the swf is downloading! is there a better way of embedeing this! so that it doesnt play until its fully downloaded! still good though!</p>
<p>any way well done! keep up the good work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

