静岡理工科大学 | 菅沼ホーム | ActionScript 目次 | 索引 |
2008年5月22日
package { import flash.display.Sprite; [SWF(backgroundColor="0xeeffee", width="60", height="40", frameRate="30")] public class Date_e extends Sprite { public function Date_e() { init(); } private function init():void { var now : Date = new Date(); trace(now.getFullYear() + "年" + (now.getMonth()+1) + "月" + now.getDate() + "日"); } } }
静岡理工科大学 | 菅沼ホーム | ActionScript 目次 | 索引 |