In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: flash on 2010-4-14

Get Adobe Flash player
by yumekuma 04 Apr 2011
/**
 * Copyright yumekuma ( http://wonderfl.net/user/yumekuma )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/s2U5
 */

// forked from kihon's flash on 2010-4-14
package
{
    import flash.display.Sprite;
    import com.bit101.components.Calendar;
 
    public class Main extends Sprite
    {
        public function Main()
        {
            var calendar:Calendar = new Calendar(this, 0, 0);
 
            trace(calendar.day);    // 日
            trace(calendar.month);    // 月
            trace(calendar.year);    // 年
        }
    }
}