да нет ребят. после изучения хелпа и пары статей по поводу Date навоялось вот это:

Код:
onClipEvent ( enterFrame ) {
var time = new Date();
var londontime = new Date();
londontime.setHours(0);
var hours = time.getUTCHours();
var minutes = time.getUTCMinutes();
var seconds = time.getUTCSeconds();
hours = time - londontime
this.hour._rotation = this.hour_shadow._rotation = 30 * hours + minutes / 2;
this.min._rotation = this.min_shadow._rotation = 6 * minutes;
this.sec._rotation = this.sec_shadow._rotation = 6 * seconds;
}
но почему-то глючит дико. час-два нормально показывает время потом летит все к черту.