вот те часы

Код:
_root.createTextField("text", 0, 0, 0, 100, 20);
_root.text.border = 1;
_root.onEnterFrame = function() {
myDate = new Date();
s = myDate.getSeconds();
m = myDate.getMinutes();
h = myDate.getHours();
_root.text.text = h+" : "+m+" : "+s;
};
вот те таймер

Код:
_root.onEnterFrame = function() {
trace(getTimer());
};