Post answers and links in the comments PLLLLEEEEEEEEEEASE.
Help me Flash RSS junkies, you're my only hope.
UPDATE:
Here is a test of using http://formatmysourcecode.blogspot.com
public static function formatTime(seconds:int):String
{
seconds %= 86400;
var hours:int = seconds / 3600;
var minutes:int = (seconds / 60) - (hours*60);
var secs:int = seconds - (hours*3600) - (minutes * 60);
var timeString:String = ((hours<10)? "0"+hours : hours)+":"+((minutes<10)? "0"+minutes : minutes)+":"+((secs<10)? "0"+secs : secs);
return timeString;
}
4 comments:
Use this.
http://formatmysourcecode.blogspot.com
Thanks for making the effort to share your code. I hope you get this sorted. I'm looking forwards to seeing what you post.
post on wonderfl.kayac.com :)
I guess there is http://code.google.com/p/syntaxhighlighter/ also, but I haven't tried it on blogspot.
Keeping an eye out for your snippets ;)
Post a comment