Код:
//****************************************
// 2006 © METOART Flash Studio 
// Created by MAPO4HUK
//****************************************
// [Только зарегистрированные пользователи могут видеть ссылки. ]
//****************************************

function drawArrow(s, c, i, t, d) {
****this.createEmptyMovieClip("mc"+i, d);
****this["mc"+i].lineStyle(s, c, 100);
****this["mc"+i].moveTo(0, 0);
****this["mc"+i].lineTo(0, t);
****this["mc"+i]._x = Stage.width/2;
****this["mc"+i]._y = Stage.height/2;
}
drawArrow(1, 0x00CC00, 1, -120, 1);
drawArrow(4, 0xFF9900, 2, -90, 2);
drawArrow(6, 0xCC0022, 3, -60, 3);
onEnterFrame = function () {
****var clock:Date = new Date();
****H = clock.getHours();
****M = clock.getMinutes();
****S = clock.getSeconds();
****mc3._rotation = (H*3600+M*59+S)/120;
****mc2._rotation = (M*60+S)/10;
****mc1._rotation = S*6;
};