我想要的是:
如何使用Adobe ActionScript 3.0轻松完成?
答案 0 :(得分:1)
使用AS3很容易做到这两点。当前时间与创建新Date对象一样简单。我添加了一些代码来以正常时钟的方式格式化日期。
now = new Date();
trace(now.hours > 12 ? (now.hours - 12) : now.hours) + ":" + (now.minutes < 10 ? "0" : "") + now.minutes + (now.hours > 12 ? "pm" : "am");
创建自定义右键单击上下文菜单项也非常简单。这是一个关于它的教程:http://www.republicofcode.com/tutorials/flash/as3contextmenu/