<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Comments on snippet: 'ActionScript Seconds to Standard Time Format'</title>
<link>http://snipplr.com</link>
<description>Snipplr comments feed'</description>
<language>en-us</language>
<pubDate>Tue, 18 Jun 2013 13:41:32 GMT</pubDate>
<item>
<title>withinmedianl said on 11/20/10</title>
<link>http://snipplr.com/view/33913/actionscript-seconds-to-standard-time-format/</link>
<description><![CDATA[ Woops, that didn't work.
i posted it here: http://www.snipplr.com/view/44445/convert-number-time-to-more-readable-time/
copy and update your version, then notify me and i will delete mine ]]></description>
<pubDate>Sat, 20 Nov 2010 00:46:22 GMT</pubDate>
<guid>http://snipplr.com/view/33913/actionscript-seconds-to-standard-time-format/</guid>
</item>
<item>
<title>withinmedianl said on 11/20/10</title>
<link>http://snipplr.com/view/33913/actionscript-seconds-to-standard-time-format/</link>
<description><![CDATA[ Like this it gives you more control:

private function convertTime(secs:Number, format:String = ""):String
		{
			var toReturn:String;
			
			var h:Number=Math.floor(secs/3600);
			var m:Number=Math.floor((secs%3600)/60);
			var s:Number=Math.floor((secs%3600)%60);
			if (format)
			{
				if(format == "h")
				{
					toReturn = (h==0?"":(h ]]></description>
<pubDate>Sat, 20 Nov 2010 00:42:27 GMT</pubDate>
<guid>http://snipplr.com/view/33913/actionscript-seconds-to-standard-time-format/</guid>
</item>
</channel>
</rss>