flash on 2010-4-14

by kihon
♥2 | Line 15 | Modified 2010-04-14 01:16:48 | MIT License
play

ActionScript3 source code

/**
 * Copyright kihon ( http://wonderfl.net/user/kihon )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/iYgK
 */

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);	// 年
		}
	}
}

Forked