<?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: Time format from seconds in AS3</title>
	<atom:link href="http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/</link>
	<description>Blogging on and developing web and mobile technologies</description>
	<lastBuildDate>Tue, 06 Dec 2011 13:20:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: AS3 Flash Counter Using the Timer Class and Formatting Time in Minutes &#124; Ali Qureshi&#039;s Blog</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-376</link>
		<dc:creator>AS3 Flash Counter Using the Timer Class and Formatting Time in Minutes &#124; Ali Qureshi&#039;s Blog</dc:creator>
		<pubDate>Fri, 08 Jul 2011 14:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-376</guid>
		<description>[...] count the seconds, I used AS3 Timer class and for formatting I found this formatTime function of Jeff Depascale and put together following Flash counter using the Timer [...]</description>
		<content:encoded><![CDATA[<p>[...] count the seconds, I used AS3 Timer class and for formatting I found this formatTime function of Jeff Depascale and put together following Flash counter using the Timer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff dePascale</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-369</link>
		<dc:creator>Jeff dePascale</dc:creator>
		<pubDate>Mon, 23 May 2011 22:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-369</guid>
		<description>@jermbo:

We are working with seconds, so 3600 is equivalent to 1 hour in total seconds (60 seconds per minute * 60 minutes).

% is the modulo operator, better described here:

http://en.wikipedia.org/wiki/Modulo_operation

basically you get the remainder of a calculation. So 5%2 would be 1, since 5 divided by 2 is 2 with a remainder of 1. Hope that helps :)</description>
		<content:encoded><![CDATA[<p>@jermbo:</p>
<p>We are working with seconds, so 3600 is equivalent to 1 hour in total seconds (60 seconds per minute * 60 minutes).</p>
<p>% is the modulo operator, better described here:</p>
<p><a href="http://en.wikipedia.org/wiki/Modulo_operation" rel="nofollow">http://en.wikipedia.org/wiki/Modulo_operation</a></p>
<p>basically you get the remainder of a calculation. So 5%2 would be 1, since 5 divided by 2 is 2 with a remainder of 1. Hope that helps <img src='http://www.jeffdepascale.com/news/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jermbo</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-368</link>
		<dc:creator>jermbo</dc:creator>
		<pubDate>Mon, 23 May 2011 20:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-368</guid>
		<description>this is exactly what i needed. Thank you!!

for my own understanding can you explain why you are dividing and multiplying by 3600. And what does the % do in terms of math functions.

Thank your for your time!</description>
		<content:encoded><![CDATA[<p>this is exactly what i needed. Thank you!!</p>
<p>for my own understanding can you explain why you are dividing and multiplying by 3600. And what does the % do in terms of math functions.</p>
<p>Thank your for your time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaun Thomson</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-354</link>
		<dc:creator>Shaun Thomson</dc:creator>
		<pubDate>Mon, 29 Nov 2010 05:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-354</guid>
		<description>Hi

This outputs &quot;20&quot; instead of &quot;0:03:20&quot; for me.

Is there something else I need to do to get it working?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>This outputs &#8220;20&#8243; instead of &#8220;0:03:20&#8243; for me.</p>
<p>Is there something else I need to do to get it working?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-350</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Thu, 14 Oct 2010 00:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-350</guid>
		<description>You&#039;re a legend!. Cleanest and most optimized time format converter class I found around Google&#039;s first page of results... that says a lot.

When it comes to math I tend to get a little bit lazy haha ...

Cheers again!</description>
		<content:encoded><![CDATA[<p>You&#8217;re a legend!. Cleanest and most optimized time format converter class I found around Google&#8217;s first page of results&#8230; that says a lot.</p>
<p>When it comes to math I tend to get a little bit lazy haha &#8230;</p>
<p>Cheers again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JP</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-348</link>
		<dc:creator>JP</dc:creator>
		<pubDate>Wed, 29 Sep 2010 09:25:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-348</guid>
		<description>Cheers :-)</description>
		<content:encoded><![CDATA[<p>Cheers <img src='http://www.jeffdepascale.com/news/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesus</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-337</link>
		<dc:creator>Jesus</dc:creator>
		<pubDate>Tue, 25 May 2010 16:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-337</guid>
		<description>Bad ass thanks</description>
		<content:encoded><![CDATA[<p>Bad ass thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eerk</title>
		<link>http://www.jeffdepascale.com/index.php/flash/time-format-from-seconds-in-as3/comment-page-1/#comment-281</link>
		<dc:creator>Eerk</dc:creator>
		<pubDate>Tue, 16 Feb 2010 12:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffdepascale.com/?p=196#comment-281</guid>
		<description>Saved me a lot of time! Thanks!</description>
		<content:encoded><![CDATA[<p>Saved me a lot of time! Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

