Please help me give away my source code!
I have loads of great ActionScript snippets that I want to share with the Flash community. Unfortunately I cannot get code to appear in any decent way on Blogger. If anyone can help me get the cool snippet window which everyone else seems to have on wordpress to work on my blogger account, that would be sweet, and I will shower you all with great code. (well not that great, I wrote it).
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
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;
}
Comments
http://formatmysourcecode.blogspot.com
Keeping an eye out for your snippets ;)