Combined Code
frame 1 {
_quality = 'medium';
}
movieClip 3 {
frame 1472 {
stop();
}
}
movieClip 4 {
}
movieClip 16 {
}
movieClip 17 {
}
movieClip 18 {
}
movieClip 25 {
}
movieClip 26 {
frame 1 {
currentDate = new Date();
thisYear = currentDate.getFullYear();
eventDate = new Date(2013, 7, 1, 6, 0, 1);
eventDate.setTime(eventDate.getTime() + eventDate.getTimezoneOffset() * 60 * 1000);
eventMillisecs = eventDate.getTime();
counter.onEnterFrame = function () {
currentDate = new Date();
currentMillisecs = currentDate.getTime();
this.msecs = eventMillisecs - currentMillisecs;
this.secs = Math.floor(this.msecs / 1000);
this.mins = Math.floor(this.secs / 60);
this.hours = Math.floor(this.mins / 60);
this.days = Math.floor(this.hours / 24);
this.msecs = String(this.msecs % 1000);
this.secs = String(this.secs % 60);
this.mins = String(this.mins % 60);
this.hours = String(this.hours % 24);
this.days = String(this.days);
while (this.msecs.length < 3) {
this.msecs = '0' + this.msecs;
}
if (this.secs.length < 2) {
this.secs = '0' + this.secs;
}
if (this.mins.length < 2) {
this.mins = '0' + this.mins;
}
if (this.hours.length < 2) {
this.hours = '0' + this.hours;
}
while (this.days.length < 3) {
this.days = '0' + this.days;
}
for (movie in this) {
if (this[movie]._parent == this) {
this[movie].evaluateFrameFrom(this);
}
}
};
MovieClip.prototype.evaluateFrameFrom = function (variableClip) {
var v3 = this._name.split('_');
var v5 = variableClip[v3[0]];
var v4 = Number(v3[1]);
var v2 = 1 + Number(v5.charAt(v4));
if (this._currentframe != v2) {
this.gotoAndStop(v2);
}
};
}
}
movieClip 27 {
}
movieClip 28 {
}
movieClip 29 {
}
movieClip 30 {
}
movieClip 31 {
}
movieClip 33 {
}
movieClip 34 {
frame 1 {
currentDate = new Date();
thisYear = currentDate.getFullYear();
eventDate = new Date(2013, 7, 1, 6, 0, 1);
eventDate.setTime(eventDate.getTime() + eventDate.getTimezoneOffset() * 60 * 1000);
eventMillisecs = eventDate.getTime();
counter.onEnterFrame = function () {
currentDate = new Date();
currentMillisecs = currentDate.getTime();
this.msecs = eventMillisecs - currentMillisecs;
this.secs = Math.floor(this.msecs / 1000);
this.mins = Math.floor(this.secs / 60);
this.hours = Math.floor(this.mins / 60);
this.days = Math.floor(this.hours / 24);
this.msecs = String(this.msecs % 1000);
this.secs = String(this.secs % 60);
this.mins = String(this.mins % 60);
this.hours = String(this.hours % 24);
this.days = String(this.days);
while (this.msecs.length < 3) {
this.msecs = '0' + this.msecs;
}
if (this.secs.length < 2) {
this.secs = '0' + this.secs;
}
if (this.mins.length < 2) {
this.mins = '0' + this.mins;
}
if (this.hours.length < 2) {
this.hours = '0' + this.hours;
}
while (this.days.length < 3) {
this.days = '0' + this.days;
}
for (movie in this) {
if (this[movie]._parent == this) {
this[movie].evaluateFrameFrom(this);
}
}
};
MovieClip.prototype.evaluateFrameFrom = function (variableClip) {
var v3 = this._name.split('_');
var v5 = variableClip[v3[0]];
var v4 = Number(v3[1]);
var v2 = 1 + Number(v5.charAt(v4));
if (this._currentframe != v2) {
this.gotoAndStop(v2);
}
};
}
frame 1472 {
stop();
}
}
movieClip 37 {
frame 1 {
function camControl() {
rp.x = _x;
rp.y = _y;
var v4 = camH * (_yscale * 0.01);
var v3 = camW * (_xscale * 0.01);
var v6 = sH / v4;
var v5 = sW / v3;
_x2 = (v3 / 2) * v5;
_y2 = (v4 / 2) * v6;
_xscale2 = v5 * 100;
_yscale2 = v6 * 100;
_rotation2 = -_rotation;
_parent.filters = this.filters;
_parent.transform.colorTransform = this.transform.colorTransform;
}
function reset() {
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
_parent._rotation = 0;
_parent._visible = true;
}
function set_x2(value) {
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
_parent._x += value - v2.x;
}
function get_x2() {
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
return v2.x;
}
function set_y2(value) {
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
_parent._y += value - v2.y;
}
function get_y2() {
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
return v2.y;
}
function get_xscale2() {
return _parent._xscale;
}
function set_xscale2(value) {
setProperty2('_xscale', value);
}
function get_yscale2() {
return _parent._yscale;
}
function set_yscale2(value) {
setProperty2('_yscale', value);
}
function get_rotation2() {
return parent.rotation;
}
function set_rotation2(value) {
setProperty2('_rotation', value);
}
function setProperty2(prop, n) {
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
_parent[prop] = n;
var v3 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v3);
_parent._x -= v3.x - v2.x;
_parent._y -= v3.y - v2.y;
}
_visible = false;
addProperty('_x2', get_x2, set_x2);
addProperty('_y2', get_y2, set_y2);
addProperty('_xscale2', get_xscale2, set_xscale2);
addProperty('_yscale2', get_yscale2, set_yscale2);
addProperty('_rotation2', get_rotation2, set_rotation2);
var oldScaleMode = stage.scaleMode;
stage.scaleMode = 'exactFit';
var sW = Stage.width;
var sH = Stage.height;
stage.scaleMode = oldScaleMode;
var bounds_obj = this.getBounds(this);
var camH = Math.abs(bounds_obj.yMax - bounds_obj.yMin);
var camW = Math.abs(bounds_obj.xMax - bounds_obj.xMin);
var rp = {'x': this._x, 'y': this._y};
onEnterFrame = function () {
camControl();
};
this.onUnload = reset;
}
}
// unknown tag 88 length 148
frame 1495 {
gotoAndPlay(1472);
}