[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Instance of Symbol 8 MovieClip "load" in Frame 1 (266 B)
onClipEvent (load) {
_root.stop();
}
onClipEvent (enterFrame) {
_root.percent = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (100 == Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100)) {
_root.gotoAndPlay("start");
}
}
Frame 2 (22 B)
gotoAndStop ("load");
Frame 246 (19 B)
gotoAndStop (246);
Symbol 15 Button (43 B)
on (press, release) {
gotoAndPlay (246);
}
Symbol 28 MovieClip Frame 1 (609 B)
goal_year = 2008;
goal_month = 5;
goal_day = 23;
goal_date = new Date(goal_year, goal_month - 1, goal_day, 0, 0, 0);
this.onEnterFrame = function () {
now_date = new Date();
count_time = goal_date - now_date;
count_day = Math.floor(count_time / 86400000);
count_hour = Math.floor(count_time / 3600000) - (count_day * 24);
count_minute = (Math.floor(count_time / 60000) - ((count_day * 24) * 60)) - (count_hour * 60);
count_second = ((Math.floor(count_time / 1000) - (((count_day * 24) * 60) * 60)) - ((count_hour * 60) * 60)) - (count_minute * 60);
counter = (count_day + 1) + "\u65E5";
};
Symbol 29 Button (43 B)
on (press, release) {
gotoAndPlay (247);
}