промашка вышла...
устал под вечер, да и в блокноте не проверить
вот поправил, теперь как швейцарские:

:
Цитата:
createTextField ('c', 1000, 400, 0, 1, 1)
with(c){
background=border=true;
backgroundColor=0x666666;
borderColor=0xCCCCCC;
autoSize='center';
textColor=0x00FF00;
selectable=false;}
setInterval(function(){o=new Date();
c.text=(((h=o.getHours())>9)? h : '0'+h)+':'+(((m=o.getMinutes())>9)? m : '0'+m)+
((pt=!pt)? '.':':')+(((s=o.getSeconds())>9)? s : '0'+s);
},500)
|