Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a good AS3 Date library?

I'm curious if anyone can point me to a robust and well documented Date library for AS3. Specifically, I'd like one that works (at least in principal) like the Java date formatter, so that you can pass in a string of a specific type and get back a date object that can then be easily translated to an alternate timezone, etc. Working with the native Date object is an incredible PITA for when one needs to do things like this... I'm hoping I won't have to re-invent this wheel from scratch.

TIA

like image 358
Yevgeny Simkin Avatar asked Feb 02 '12 00:02

Yevgeny Simkin


1 Answers

You might find a useful one from a framework like CASA Lib. Here's there's for example: http://as3.casalib.org/docs/org_casalib_util_DateUtil.html

There are other big libraries that might have something helpful, like AS3CoreLib: https://github.com/mikechambers/as3corelib/blob/master/src/com/adobe/utils/DateUtil.as

like image 190
James Tomasino Avatar answered Sep 21 '22 20:09

James Tomasino