Frame 1
FSCommand2("FullScreen", "1");
FSCommand2("SetQuality", "high");
_focusrect = "0";
Symbol 20 MovieClip Frame 1
setProperty("hour1", _xscale , "100");
setProperty("hour1", _yscale , "100");
setProperty("hour2", _xscale , "100");
setProperty("hour2", _yscale , "100");
setProperty("min1", _xscale , "100");
setProperty("min1", _yscale , "100");
setProperty("min2", _xscale , "100");
setProperty("min2", _yscale , "100");
setProperty("sec1", _xscale , "100");
setProperty("sec1", _yscale , "100");
setProperty("sec2", _xscale , "100");
setProperty("sec2", _yscale , "100");
H = FSCommand2("GetTimeHours");
M = FSCommand2("GetTimeMinutes");
S = FSCommand2("GetTimeSeconds");
Set("/:$X", (H * "30") + (M * "0.5"));
setProperty("hour1", _rotation , ((/:$X < int(/:$X)) ? (int(/:$X - "1")) : (int(/:$X))));
Set("/:$X", (H * "30") + (M * "0.5"));
setProperty("hour2", _rotation , ((/:$X < int(/:$X)) ? (int(/:$X - "1")) : (int(/:$X))));
Set("/:$X", (M * "6") + (S * "0.1"));
setProperty("min1", _rotation , ((/:$X < int(/:$X)) ? (int(/:$X - "1")) : (int(/:$X))));
Set("/:$X", (M * "6") + (S * "0.1"));
setProperty("min2", _rotation , ((/:$X < int(/:$X)) ? (int(/:$X - "1")) : (int(/:$X))));
setProperty("sec1", _rotation , S * "6");
setProperty("sec2", _rotation , S * "6");
Symbol 20 MovieClip Frame 2
gotoAndPlay (1);
Symbol 27 MovieClip Frame 1
Set("/:Hours", FSCommand2("GetTimeHours"));
Set("/:Minutes", FSCommand2("GetTimeMinutes"));
Set("/:Seconds", FSCommand2("GetTimeSeconds"));
y = FSCommand2("GetDateYear");
m = FSCommand2("GetDateMonth");
d = FSCommand2("GetDateDay");
y1 = substring(y, "1", "1");
y2 = substring(y, "2", "1");
y3 = substring(y, "3", "1");
y4 = substring(y, "4", "1");
if ("9" >= m) {
m1 = "0";
m2 = substring(m, "1", "1");
} else {
m1 = "1";
m2 = substring(m, "2", "1");
}
if ("9" >= d) {
d1 = "0";
d2 = substring(d, "1", "1");
} else {
d1 = substring(d, "1", "1");
d2 = substring(d, "2", "1");
}
wday = FSCommand2("GetDateWeekday");
Set("/:$X3", wday);
if (/:$X3 <> "0") {
if (/:$X3 <> "1") {
if (/:$X3 <> "2") {
if (/:$X3 <> "3") {
if (/:$X3 <> "4") {
if (/:$X3 <> "5") {
if (/:$X3 <> "6") {
// unexpected jump
ww = "Sun";
// unexpected jump
ww = "Mon";
// unexpected jump
ww = "Tue";
// unexpected jump
ww = "Wed";
// unexpected jump
ww = "Thu";
// unexpected jump
ww = "Fri";
// unexpected jump
}
}
}
}
}
}
} else {
ww = "Sun";
// unexpected jump
ww = "Mon";
// unexpected jump
ww = "Tue";
// unexpected jump
ww = "Wed";
// unexpected jump
ww = "Thu";
// unexpected jump
ww = "Fri";
// unexpected jump
ww = "Sat";
}
wdate = ((((((m1 add m2) add "/") add d1) add d2) add "(") add ww) add ")";
hh = FSCommand2("GetTimeHours");
mm = FSCommand2("GetTimeMinutes");
ss = FSCommand2("GetTimeSeconds");
if ("9" >= hh) {
h1 = "0";
h2 = substring(hh, "1", "1");
} else {
h1 = substring(hh, "1", "1");
h2 = substring(hh, "2", "1");
}
if ("9" >= mm) {
n1 = "0";
n2 = substring(mm, "1", "1");
} else {
n1 = substring(mm, "1", "1");
n2 = substring(mm, "2", "1");
}
if ("9" >= ss) {
s1 = "0";
s2 = substring(ss, "1", "1");
} else {
s1 = substring(ss, "1", "1");
s2 = substring(ss, "2", "1");
}
wtime = ((((((h1 add h2) add ":") add n1) add n2) add ":") add s1) add s2;
Symbol 27 MovieClip Frame 2
gotoAndPlay (1);