Symbol 10 MovieClip Frame 1
Symbol 16 MovieClip Frame 1
Symbol 19 MovieClip Frame 1
FSCommand2("FullScreen", true);
var myFrames = Array();
myFrames = [20, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 1, 5, 10, 15, 20];
numberOfAnimatedFrames = 0;
this.onEnterFrame = function () {
var _local1 = new Date();
var _local2 = _local1.getHours();
var _local4 = _local1.getMonth();
var _local3 = _local1.getDate();
_local1 = _local1.getDay();
var _local5 = _local1.getMinutes();
var _local6 = _local1.getFullYear();
i = 0;
while (i < 24) {
if (_local2 == i) {
if (i != 23) {
if (i < 23) {
newI = i + 1;
}
} else {
newI = 0;
}
sky_mc.gotoAndStop(myFrames[newI]);
sky_mc.stop();
sky_mc.gotoAndStop(myFrames[newI]);
break;
}
i++;
}
};
Symbol 23 MovieClip Frame 1
myDate = new Date();
hour = myDate.getHours();
minute = myDate.getMinutes();
second = myDate.getSeconds();
day = myDate.getDate();
moth = myDate.getMonth();
year = myDate.getFullYear();
Tic = myDate.getDay();
if (moth == 0) {
moth1 = "\u042F\u043D\u0432";
}
if (moth == 1) {
moth1 = "\u0424\u0435\u0432";
}
if (moth == 2) {
moth1 = "\u041C\u0430\u0440";
}
if (moth == 3) {
moth1 = "\u0410\u043F\u0440";
}
if (moth == 4) {
moth1 = "\u041C\u0430\u044F";
}
if (moth == 5) {
moth1 = "\u0418\u044E\u043D";
}
if (moth == 6) {
moth1 = "\u0418\u044E\u043B";
}
if (moth == 7) {
moth1 = "\u0410\u0432\u0433";
}
if (moth == 8) {
moth1 = "\u0421\u0435\u043D";
}
if (moth == 9) {
moth1 = "\u041E\u043A\u0442";
}
if (moth == 10) {
moth1 = "\u041D\u043E\u044F";
}
if (moth == 11) {
moth1 = "\u0414\u0435\u043A";
}
if (Tic == 0) {
Tic1 = "\u0412\u0441";
}
if (Tic == 1) {
Tic1 = "\u041F\u043D";
}
if (Tic == 2) {
Tic1 = "\u0412\u0442";
}
if (Tic == 3) {
Tic1 = "\u0421\u0440";
}
if (Tic == 4) {
Tic1 = "\u0427\u0442";
}
if (Tic == 5) {
Tic1 = "\u041F\u0442";
}
if (Tic == 6) {
Tic1 = "\u0421\u0431";
}
dates = (((day + " ") + moth1) + " ") + Tic1;
Symbol 23 MovieClip Frame 2
gotoAndPlay (1);
Symbol 32 MovieClip Frame 1
_root.onEnterFrame = function () {
myDate = new Date();
hourHand._rotation = (myDate.getHours() * 30) + (myDate.getMinutes() / 2);
hourHandShadow._rotation = (myDate.getHours() * 30) + (myDate.getMinutes() / 2);
minuteHand._rotation = (myDate.getMinutes() * 6) + (myDate.getSeconds() / 10);
minuteHandShadow._rotation = (myDate.getMinutes() * 6) + (myDate.getSeconds() / 10);
secondHand._rotation = (myDate.getSeconds() * 6) + (6 * (myDate.getMilliseconds() / 1000));
secondHandShadow._rotation = (myDate.getSeconds() * 6) + (6 * (myDate.getMilliseconds() / 1000));
};
Symbol 32 MovieClip Frame 2
gotoAndPlay (1);
Symbol 35 MovieClip Frame 1
setProperty("hour", _xscale , 100);
setProperty("hour", _yscale , 100);
setProperty("minute", _xscale , 100);
setProperty("minute", _yscale , 100);
setProperty("second", _xscale , 100);
setProperty("second", _yscale , 100);
myDate = new Date();
hr_a = myDate.getHours();
min_a = myDate.getMinutes();
sec_a = myDate.getSeconds();
setProperty("hour", _rotation , (hr_a * 30) + (min * 0.5));
setProperty("minute", _rotation , (min_a * 6) + (sec * 0.1));
if (last_sec != sec_a) {
time = getTimer();
}
setProperty("second", _rotation , (sec_a + ((getTimer() - time) / 1000)) * 6);
last_sec = sec_a;
Symbol 35 MovieClip Frame 2
gotoAndPlay (1);