Skip to content

Instantly share code, notes, and snippets.

Created December 26, 2012 08:49
Show Gist options
  • Save anonymous/4378955 to your computer and use it in GitHub Desktop.
Save anonymous/4378955 to your computer and use it in GitHub Desktop.
Create file name by time
private function getUniqueName () : String
{
var d : Date = new Date();
return d.getMonth() + 1 + '' + d.getDate() + '' + d.getHours() + '' + d.getMinutes() + '' + d.getMilliseconds();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment