Combined Code
movieClip 3 {
frame 1472 {
stop();
}
}
movieClip 4 {
}
movieClip 16 {
}
movieClip 17 {
}
movieClip 19 {
}
movieClip 30 {
}
// unknown tag 88 length 70
movieClip 33 {
frame 1 {
currentDate = new Date();
thisYear = currentDate.getFullYear();
eventDate = new Date(2013, 6, 8, 2);
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 v2 = this._name.split('_');
var v4 = variableClip[v2[0]];
var v5 = Number(v2[1]);
var v3 = 1 + Number(v4.charAt(v5));
if (this._currentframe != v3) {
this.gotoAndStop(v3);
}
};
}
}
movieClip 34 {
}
movieClip 38 {
}
movieClip 41 {
}
movieClip 42 {
}
movieClip 43 {
}
movieClip 46 {
}
movieClip 47 {
frame 1 {
currentDate = new Date();
thisYear = currentDate.getFullYear();
eventDate = new Date(2013, 6, 8, 2);
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 v2 = this._name.split('_');
var v4 = variableClip[v2[0]];
var v5 = Number(v2[1]);
var v3 = 1 + Number(v4.charAt(v5));
if (this._currentframe != v3) {
this.gotoAndStop(v3);
}
};
}
frame 1472 {
stop();
}
}
movieClip 50 {
frame 1 {
function camControl() {
rp.x = _x;
rp.y = _y;
var v5 = camH * (_yscale * 0.01);
var v6 = camW * (_xscale * 0.01);
var v3 = sH / v5;
var v4 = sW / v6;
_x2 = (v6 / 2) * v4;
_y2 = (v5 / 2) * v3;
_xscale2 = v4 * 100;
_yscale2 = v3 * 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 v3 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v3);
_parent[prop] = n;
var v2 = {'x': rp.x, 'y': rp.y};
_parent.localToGlobal(v2);
_parent._x -= v2.x - v3.x;
_parent._y -= v2.y - v3.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;
}
}
frame 1495 {
gotoAndPlay(1472);
}