Symbol 8 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 _local2 = new Date();
var _local1 = _local2.getHours();
var _local5 = _local2.getMonth();
var _local6 = _local2.getDate();
_local2 = _local2.getDay();
var _local4 = _local2.getMinutes();
var _local3 = _local2.getFullYear();
i = 0;
while (i < 24) {
if (_local1 == i) {
if (i == 23) {
newI = 0;
} else if (i < 23) {
newI = i + 1;
}
sky_mc.gotoAndStop(myFrames[newI]);
sky_mc.stop();
sky_mc.gotoAndStop(myFrames[newI]);
break;
}
i++;
}
};
Symbol 14 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 14 MovieClip Frame 2
gotoAndPlay (1);
Symbol 21 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 21 MovieClip Frame 2
gotoAndPlay (1);