Combined Code
movieClip 7 {
}
movieClip 8 loading {
}
movieClip 155 mask_full_photo {
frame 1 {
var mask_total = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = function () {
with (mask2_mc) {
_x = 0;
_y = 0;
_xscale = 100;
_yscale = 100;
delete this.onEnterFrame;
}
};
}
}
movieClip 156 mask_28 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_x = photo_width / 2;
_y = (photo_height / 2) * (100 - i * delScale) / 100;
_xscale = i * delScale;
_yscale = i * delScale;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var left;
var top;
var right;
var bottom;
left = -photo_width / 2;
top = 0;
right = photo_width / 2;
bottom = photo_height;
var midX = (right - left) / 2 + left;
var midY = (bottom - top) / 2 + top;
var radius = 2 * (midY - top);
var hLeft = midX - radius;
var hTop = midY - radius;
var startY = int(hTop + double(midY - hTop) * 2 / 5);
var px = new Array(61);
var py = new Array(61);
var angle = 0;
k = 0;
while (k <= 30) {
xt = hLeft + Math.cos(angle) * radius;
yt = startY - Math.sin(angle) * radius;
px[k] = xt;
py[k] = yt;
angle += 0.1309;
++k;
}
px[30] = midX;
py[30] = py[29] + 5 * (midX - px[29]) / 6;
k = 31;
while (k < 60) {
px[k] = 2 * midX - px[60 - k];
py[k] = py[60 - k];
++k;
}
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(px[0], py[0]);
k = 1;
while (k < 60) {
lineTo(px[k], py[k]);
++k;
}
lineTo(px[0], py[0]);
endFill();
}
i = 0;
onEnterFrame = maskTransition;
}
}
movieClip 157 mask_27 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 19;
var temp_height = new Array(20);
k = 0;
while (k <= 19) {
var mask_mc = this.createEmptyMovieClip('block' + k, k);
temp_height[k] = 1 + random(10);
draw_mask(eval('block' + k), 0, 0, photo_width * 1 / 20 + 1, photo_height);
eval('block' + k)._x = photo_width * k / 20;
eval('block' + k)._y = 0;
eval('block' + k)._yscale = 0;
mask_;
++k;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < 21) {
k = 0;
while (k <= 19) {
c = eval('block' + k + '._yscale');
if (c < 100) {
eval('block' + k)._yscale = mask_num * 5 + temp_height[k] * 4;
}
++k;
}
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 158 mask_26 {
frame 1 {
function draw_round_mask(mask, radius, a, b) {
var v1 = radius;
var v2 = b;
var v3 = a;
mask.clear();
mask.lineStyle(0, 0);
mask.moveTo(v3, v2 + v1);
mask.beginFill(0);
mask.curveTo(v3 + v1, v2 + v1, v3 + v1, v2);
mask.curveTo(v3 + v1, v2 - v1, v3, v2 - v1);
mask.curveTo(v3 - v1, v2 - v1, v3 - v1, v2);
mask.curveTo(v3 - v1, v2 + v1, v3, v2 + v1);
mask.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var radius = 80;
var seg = Math.floor(Math.sqrt(Math.pow(radius, 2) / 2));
var x_num = Math.ceil(photo_width / seg);
var y_num = Math.ceil(photo_height / seg);
var mask_total = x_num * y_num - 1;
k = 0;
while (k < y_num) {
l = 0;
while (l < x_num) {
var mask_mc = this.createEmptyMovieClip('block' + (k * x_num + l), k * x_num + l);
draw_round_mask(mask_mc, radius, 0, 0);
mask_mc._x = seg * l;
mask_mc._y = seg * k;
mask_mc._xscale = 0;
mask_mc._yscale = 0;
mask_;
++l;
}
++k;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < 34) {
k = 0;
while (k < y_num) {
l = 0;
while (l < x_num) {
eval('block' + (k * x_num + l))._xscale = mask_num * 3;
eval('block' + (k * x_num + l))._yscale = mask_num * 3;
++l;
}
++k;
}
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 159 mask_25 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 0;
mask_w = photo_width;
mask_h = photo_height;
var mask_mc = this.createEmptyMovieClip('block0', 0);
mask_mc.clear();
mask_mc.lineStyle(0, 0);
mask_mc.moveTo(0, -mask_h);
mask_mc.beginFill(0);
mask_mc.lineTo(-mask_w, 0);
mask_mc.lineTo(0, mask_h);
mask_mc.lineTo(mask_w, 0);
mask_mc.lineTo(0, -mask_h);
mask_mc.endFill();
mask_mc._x = mask_w / 2;
mask_mc._y = mask_h / 2;
mask_mc._xscale = 0;
mask_mc._yscale = 0;
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < 21) {
mask_mc._xscale = mask_num * 5;
mask_mc._yscale = mask_num * 5;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 160 mask_24 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 3;
var mask_mc140 = this.createEmptyMovieClip('block0', 0);
draw_mask(mask_mc140, 0, 0, photo_width / 2, photo_height / 2);
with (mask_mc140) {
_x = 0;
_y = 0;
_xscale = 0;
_yscale = 0;
}
var mask_mc141 = this.createEmptyMovieClip('block1', 1);
draw_mask(mask_mc141, 0, 0, photo_height / 2, photo_width / 2);
with (mask_mc141) {
_x = photo_width;
_y = 0;
_rotation = 90;
_xscale = 0;
_yscale = 0;
}
var mask_mc142 = this.createEmptyMovieClip('block2', 2);
draw_mask(mask_mc142, 0, 0, photo_width / 2, photo_height / 2);
with (mask_mc142) {
_x = photo_width;
_y = photo_height;
_rotation = 180;
_xscale = 0;
_yscale = 0;
}
var mask_mc143 = this.createEmptyMovieClip('block3', 3);
draw_mask(mask_mc143, 0, 0, photo_height / 2, photo_width / 2);
with (mask_mc143) {
_x = 0;
_y = photo_height;
_rotation = -90;
_xscale = 0;
_yscale = 0;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < 21) {
mask_mc140._xscale = mask_num * 5;
mask_mc140._yscale = mask_num * 5;
mask_mc141._xscale = mask_num * 5;
mask_mc141._yscale = mask_num * 5;
mask_mc142._xscale = mask_num * 5;
mask_mc142._yscale = mask_num * 5;
mask_mc143._xscale = mask_num * 5;
mask_mc143._yscale = mask_num * 5;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 161 mask_23 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 0;
var scale_num = 18;
var mask_mc11 = this.createEmptyMovieClip('block0', 0);
draw_mask(mask_mc11, 0, 0, photo_height, photo_width);
with (mask_mc11) {
_x = 0;
_y = photo_height;
_rotation = -90;
_xscale = 0;
_yscale = 0;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < scale_num) {
mask_mc11._xscale = mask_num * 6;
mask_mc11._yscale = mask_num * 6;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 162 mask_22 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 0;
var scale_num = 18;
var mask_mc10 = this.createEmptyMovieClip('block0', 0);
draw_mask(mask_mc10, 0, 0, photo_height, photo_width);
with (mask_mc10) {
_x = photo_width;
_y = 0;
_rotation = 90;
_xscale = 0;
_yscale = 0;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < scale_num) {
mask_mc10._xscale = mask_num * 6;
mask_mc10._yscale = mask_num * 6;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 163 mask_21 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = 0;
var scale_num = 18;
var mask_mc9 = this.createEmptyMovieClip('block0', 0);
draw_mask(mask_mc9, 0, 0, photo_width, photo_height);
with (mask_mc9) {
_x = photo_width;
_y = photo_height;
_rotation = 180;
_xscale = 0;
_yscale = 0;
}
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < scale_num) {
mask_mc9._xscale = mask_num * 6;
mask_mc9._yscale = mask_num * 6;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 164 mask_20 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var dia_line = Math.ceil(Math.sqrt(Math.pow(photo_width * 1, 2) + Math.pow(photo_height * 1, 2)));
var dia_radian = Math.atan((photo_height * 1 / photo_width) * 1);
var dia_angle = 180 * dia_radian / 3.141593;
var seg_x = 11 * Math.cos(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var seg_y = 11 * Math.sin(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var mask_total = Math.ceil(photo_width * 1 / seg_x);
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = -mask_num * seg_x + photo_width * 1 / 2;
mc._y = -mask_num * seg_y + photo_height * 3 / 2 + 11;
mc._rotation = -90 - dia_angle;
mc._yscale = Math.ceil(dia_line * 110 / mc._height);
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 165 mask_19 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var dia_line = Math.ceil(Math.sqrt(Math.pow(photo_width * 1, 2) + Math.pow(photo_height * 1, 2)));
var dia_radian = Math.atan((photo_height * 1 / photo_width) * 1);
var dia_angle = 180 * dia_radian / 3.141593;
var seg_x = 11 * Math.cos(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var seg_y = 11 * Math.sin(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var mask_total = Math.ceil(photo_width * 1 / seg_x);
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = mask_num * seg_x - photo_width * 1 / 2 - 11;
mc._y = -mask_num * seg_y + photo_height * 1 / 2;
mc._rotation = -90 + dia_angle;
mc._yscale = Math.ceil(dia_line * 110 / mc._height);
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 166 mask_18 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var dia_line = Math.ceil(Math.sqrt(Math.pow(photo_width * 1, 2) + Math.pow(photo_height * 1, 2)));
var dia_radian = Math.atan((photo_height * 1 / photo_width) * 1);
var dia_angle = 180 * dia_radian / 3.141593;
var seg_x = 11 * Math.cos(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var seg_y = 11 * Math.sin(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var mask_total = Math.ceil(photo_width * 1 / seg_x);
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = -mask_num * seg_x + photo_width * 3 / 2;
mc._y = mask_num * seg_y + photo_height * 1 / 2 - 11;
mc._rotation = 90 + dia_angle;
mc._yscale = Math.ceil(dia_line * 110 / mc._height);
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 167 mask_17 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var dia_line = Math.ceil(Math.sqrt(Math.pow(photo_width * 1, 2) + Math.pow(photo_height * 1, 2)));
var dia_radian = Math.atan((photo_height * 1 / photo_width) * 1);
var dia_angle = 180 * dia_radian / 3.141593;
var seg_x = 11 * Math.cos(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var seg_y = 11 * Math.sin(dia_radian) / Math.cos(3.141593 * (90 - 2 * dia_angle) / 180);
var mask_total = Math.ceil(photo_width * 1 / seg_x);
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = mask_num * seg_x + photo_width * 1 / 2;
mc._y = mask_num * seg_y - photo_height * 1 / 2 - 11;
mc._rotation = 90 - dia_angle;
mc._yscale = Math.ceil(dia_line * 110 / mc._height);
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 168 mask_16 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = Math.floor((photo_height * 1 + 45) / 11) + 1;
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = 0;
mc._y = (mask_total - 4 - mask_num) * 11;
mc._yscale = Math.ceil(photo_width * 100 / mc._height);
mc._rotation = -90;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 169 mask_15 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_total = Math.floor((photo_height * 1 + 45) / 11) + 1;
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = photo_width;
mc._y = mask_num * 11;
mc._yscale = Math.ceil(photo_width * 100 / mc._height);
mc._rotation = 90;
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 170 mask_14 {
frame 1 {
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_total = Math.floor((photo_width * 1 + 45) / 11) + 1;
var mask_num = 0;
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num <= mask_total) {
mc = this.attachMovie('block', 'block' + mask_num, mask_num);
mc._x = (mask_total - 4 - mask_num) * 11;
mc._y = photo_height;
mc._rotation = 180;
mc._yscale = Math.ceil(photo_height * 100 / mc._height);
++mask_num;
} else {
mask_num = 0;
delete onEnterFrame;
}
};
}
}
movieClip 171 mask_13 {
frame 1 {
function draw_mask(mask, a, b, c, d) {
var v1 = mask;
var v2 = b;
var v3 = a;
v1.clear();
v1.lineStyle(0, 0);
v1.moveTo(v3, v2);
v1.beginFill(0);
v1.lineTo(v3, d);
v1.lineTo(c, d);
v1.lineTo(c, v2);
v1.lineTo(v3, v2);
v1.endFill();
}
var mask_total = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
var delScale = 100 / transitionDuration;
var mask_num = 0;
var mask_mc = this.createEmptyMovieClip('block0', 0);
draw_mask(mask_mc, 0, 0, photo_width, photo_height);
mask_mc._x = photo_width / 2;
mask_mc._y = photo_height / 2;
mask_mc._xscale = 0;
mask_mc._yscale = 0;
onEnterFrame = function () {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
if (mask_num < transitionDuration) {
mask_mc._xscale = mask_num * 5;
mask_mc._yscale = mask_num * 5;
mask_mc._x = photo_width / 2 - photo_width * mask_num * 5 / 200;
mask_mc._y = photo_height / 2 - photo_height * mask_num * 5 / 200;
++mask_num;
} else {
delete onEnterFrame;
}
};
}
}
movieClip 172 mask_12 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
k = 0;
while (k < m) {
arrayCount = clipArray.length;
nIndex = random(arrayCount);
eval(clipArray[nIndex])._xscale = 100;
eval(clipArray[nIndex])._yscale = 100;
clipArray.splice(nIndex, 1);
++k;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
slide_count = 20;
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(Math.ceil(photo_width / slide_count), 0);
lineTo(Math.ceil(photo_width / slide_count), Math.ceil(photo_height / slide_count));
lineTo(0, Math.ceil(photo_height / slide_count));
lineTo(0, 0);
endFill();
}
var clipArray = new Array();
j = 0;
while (j < slide_count) {
k = 0;
while (k < slide_count) {
duplicateMovieClip('mask2_mc', 'mask_mc_' + j + '_' + k, j * slide_count + k + 3);
eval('mask_mc_' + j + '_' + k)._x = (photo_width / slide_count) * j;
eval('mask_mc_' + j + '_' + k)._y = (photo_height / slide_count) * k;
eval('mask_mc_' + j + '_' + k)._xscale = 0;
eval('mask_mc_' + j + '_' + k)._yscale = 0;
clipArray[j * slide_count + k] = 'mask_mc_' + j + '_' + k;
++k;
}
++j;
}
arrayCount = clipArray.length;
m = Math.round(arrayCount / transitionDuration + 0.5);
if (m < 1) {
m = 1;
}
onEnterFrame = maskTransition;
}
}
movieClip 173 mask_11 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
mask2_mc._xscale = 100;
mask2_mc._yscale = i * delScale;
j = 0;
while (j < slide_count) {
eval('mask_mc_' + j)._xscale = 100;
eval('mask_mc_' + j)._yscale = i * delScale;
++j;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
slide_count = 16;
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height / slide_count + 0.5);
lineTo(0, photo_height / slide_count + 0.5);
lineTo(0, 0);
endFill();
}
j = 1;
while (j < slide_count) {
duplicateMovieClip('mask2_mc', 'mask_mc_' + j, j + 2);
eval('mask_mc_' + j)._x = 0;
eval('mask_mc_' + j)._y = (photo_height / slide_count) * j;
++j;
}
onEnterFrame = maskTransition;
}
}
movieClip 174 mask_10 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
mask2_mc._xscale = i * delScale;
mask2_mc._yscale = 100;
j = 0;
while (j < slide_count) {
eval('mask_mc_' + j)._xscale = i * delScale;
eval('mask_mc_' + j)._yscale = 100;
++j;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
slide_count = 16;
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width / slide_count + 0.5, 0);
lineTo(photo_width / slide_count + 0.5, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
j = 1;
while (j < slide_count) {
duplicateMovieClip('mask2_mc', 'mask_mc_' + j, j + 2);
eval('mask_mc_' + j)._x = (photo_width / slide_count) * j;
eval('mask_mc_' + j)._y = 0;
++j;
}
onEnterFrame = maskTransition;
}
}
movieClip 175 mask_9 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_y = (photo_height / 2) * (100 - i * delScale) / 100;
_xscale = 100;
_yscale = i * delScale;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 176 mask_8 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_x = (photo_width / 2) * (100 - i * delScale) / 100;
_xscale = i * delScale;
_yscale = 100;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 177 mask_7 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_xscale = 100;
_yscale = i * delScale;
}
with (this.mask3_mc) {
_xscale = 100;
_yscale = i * delScale;
_y = photo_height / 2 + photo_height * (100 - i * delScale) / 200;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height / 2);
lineTo(0, photo_height / 2);
lineTo(0, 0);
endFill();
}
duplicateMovieClip(mask2_mc, 'mask3_mc', 2);
onEnterFrame = maskTransition;
}
}
movieClip 178 mask_6 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_xscale = i * delScale;
_yscale = 100;
}
with (this.mask3_mc) {
_xscale = i * delScale;
_yscale = 100;
_x = photo_width * (100 - i * delScale) / 200 + photo_width / 2;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width / 2, 0);
lineTo(photo_width / 2, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
duplicateMovieClip(mask2_mc, 'mask3_mc', 2);
onEnterFrame = maskTransition;
}
}
movieClip 179 mask_5 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_xscale = 100;
_yscale = i * delScale;
_y = photo_height * (100 - i * delScale) / 100;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 180 mask_4 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_x = photo_width * (100 - i * delScale) / 100;
_xscale = i * delScale;
_yscale = 100;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 181 mask_3 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_xscale = 100;
_yscale = i * delScale;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 182 mask_2 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
with (this.mask2_mc) {
_xscale = i * delScale;
_yscale = 100;
}
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
delScale = 100 / transitionDuration;
this.createEmptyMovieClip('mask2_mc', 1);
with (mask2_mc) {
beginFill(15728640);
moveTo(0, 0);
lineTo(photo_width, 0);
lineTo(photo_width, photo_height);
lineTo(0, photo_height);
lineTo(0, 0);
endFill();
}
onEnterFrame = maskTransition;
}
}
movieClip 183 mask_1 {
frame 1 {
function maskTransition() {
with (_parent._parent.mc_current_photo) {
_alpha = 100;
}
this.mask1_mc._xscale = i * delScale;
this.mask1_mc._yscale = i * delScale;
++i;
if (i > transitionDuration) {
delete this.onEnterFrame;
}
}
i = 0;
photo_width = _parent._parent.control.getPhotoWidth();
photo_height = _parent._parent.control.getPhotoHeight();
transitionDuration = _parent._parent.control.getCurrentTransitionFrames();
this.createEmptyMovieClip('mask1_mc', 1);
mask1_mc.beginFill(15728640);
mask1_mc.moveTo(0, 0);
mask1_mc.lineTo(photo_width, 0);
mask1_mc.lineTo(photo_width, photo_height);
mask1_mc.lineTo(0, photo_height);
mask1_mc.lineTo(0, 0);
mask1_mc.endFill();
delScale = 100 / transitionDuration;
onEnterFrame = maskTransition;
}
}
movieClip 186 block {
frame 6 {
stop();
}
}
movieClip 153 {
frame 1 {
function clipEnterFrame() {
var v1 = _parent;
v1.loader_mc._x = Stage.width / 2;
v1.loader_mc._y = Stage.height / 2;
frame_loaded = v1._framesloaded;
if (frame_loaded >= total_to_load) {
v1.loader_mc._x = Stage.width + 100;
v1.loader_mc._y = Stage.height + 100;
v1.loader_mc._alpha = 0;
v1.loader_mc.removeMovieClip();
delete this.onEnterFrame;
v1.gotoAndPlay(3);
}
}
var total_to_load = 3;
_parent.createEmptyMovieClip('loader_mc', 5500);
_parent.loader_mc.attachMovie('loading', 'loading1', 5501);
onEnterFrame = clipEnterFrame;
}
}
movieClip 187 {
}
frame 3 {
stop();
_global.showboolean = 0;
_global.havemusic = 1;
_global.autoplay = 1;
_global.autorepeat = 0;
_global.showbutton = 0;
_global.enableurl = 1;
_global.continueplay = 1;
}
frame 3 {
_global.total_images = 74;
_global.flash_width = 800;
_global.flash_height = 800;
_global.thumnail_width = 120;
_global.thumnail_height = 90;
_global.frame_rate = 25;
_global.show_title = 0;
_global.album_title = '';
_global.url_target = 0;
}
movieClip 193 replayButton {
}
movieClip 196 playButton {
}
movieClip 198 {
}
movieClip 199 soundControl {
instance of movieClip 198 {
onClipEvent (load) {
_root.soundstatus = 'on';
_root.mySound = new Sound(_level0);
_root.mySound2 = new Sound(_level1);
_root.mySound3 = new Sound(_level2);
_root.mySound4 = new Sound(_level3);
_root.mySound5 = new Sound(_level4);
maxvolume = 100;
minvolume = 0;
}
onClipEvent (enterFrame) {
if (_root.soundstatus == 'on' && _parent._parent.control.currentPhoto <= _parent._parent.control.getTotalPhotos() - 1) {
step = 5;
}
if (_root.soundstatus == 'off' || _parent._parent.control.currentPhoto == _parent._parent.control.getTotalPhotos() - 1) {
step = -5;
}
maxvolume += step;
if (maxvolume > 100) {
maxvolume = 100;
}
if (maxvolume < 0) {
maxvolume = 0;
_parent._parent.music_mc.stop();
}
_root.mySound.setVolume(maxvolume);
_root.mySound2.setVolume(maxvolume);
_root.mySound3.setVolume(maxvolume);
_root.mySound4.setVolume(maxvolume);
_root.mySound5.setVolume(maxvolume);
}
}
}
movieClip 200 control {
frame 1 {
function getPhotoX() {
return photo_x;
}
function getPhotoY() {
return photo_y;
}
function getPhotoWidth() {
return _global.flash_width;
}
function getPhotoHeight() {
return _global.flash_height;
}
function ShowPhotoInformation() {
imageTitle.text = GetCurrentPhotoTitle();
imageDesc.text = GetCurrentPhotoDesc();
}
function ShowLoadingInformation() {
myLoader._alpha = 100;
myLoader._y = getPhotoHeight() / 2;
myLoader._x = getPhotoWidth() / 2;
}
function HideLoadingInformation() {
myLoader._y = -1000;
myLoader._alpha = 0;
}
photo_x = 0;
photo_y = 0;
}
frame 1 {
function setAllInfo() {
photo_frame._width = getPhotoWidth();
photo_frame._height = getPhotoHeight();
}
function addloader() {
attachMovie('loading', 'myLoader', 10);
}
function getCurrentTransitionID() {
transID = eval('_global.trans_id_' + currentPhoto);
return transID;
}
function getCurrentMaskID() {
transID = eval('_global.trans_id_' + currentPhoto);
if (transID <= 0 || transID > total_mask) {
transID = random(total_mask) + 1;
}
if (transID <= 0) {
transID = 1;
}
if (transID > total_mask) {
transID = total_mask;
}
return transID;
}
function getTotalPhotos() {
return _global.total_images;
}
function GetCurrentPhotoTitle() {
return eval('_global.title_' + currentPhoto);
}
function GetCurrentPhotoDesc() {
return eval('_global.desc_' + currentPhoto);
}
function getCurrentPhotoDuration() {
showTime = eval('_global.show_' + currentPhoto);
transitionTime = eval('_global.trans_' + currentPhoto);
frameRate = _global.frame_rate;
return (showTime + transitionTime) * 1000;
}
function getCurrentTransitionDuration() {
transitionTime = eval('_global.trans_' + currentPhoto);
return transitionTime * 1000;
}
function getCurrentTransitionFrames() {
transitionFrames = eval('_global.trans_' + currentPhoto);
return transitionFrames * _global.frame_rate;
}
function getCurrentShowDuration() {
showTime = eval('_global.show_' + currentPhoto);
return showTime * 1000;
}
function showCurrentPhoto() {
_parent.gotoAndStop(currentPhoto + 1 + FramePhotoBegin);
_parent.createEmptyMovieClip('mc_current_photo', 2 + DepthWorking);
duplicateMovieClip('_parent.mc_' + currentPhoto, 'mc_current_photo', 2 + DepthWorking);
if (_global.enableurl == 1) {
_parent.mc_current_photo.onRelease = gotoURL;
}
transitionID = getCurrentTransitionID();
if (transitionID == 0) {
transDispatch = random(2);
} else {
if (transitionID > 28) {
transDispatch = 1;
} else {
transDispatch = 0;
}
}
if (transDispatch == 1) {
_parent.createEmptyMovieClip('mask_mc', 3 + DepthWorking);
_parent.mask_mc.attachMovie('mask_full_photo', 'mask_clip_mc', 4 + DepthWorking);
_parent.mask_mc._x = getPhotoX();
_parent.mask_mc._y = getPhotoY();
_parent.mask_mc._xscale = 100;
_parent.mask_mc._yscale = 100;
_parent.mc_current_photo.setMask(_parent.mask_mc);
with (_parent.mc_current_photo) {
_alpha = 0;
_x = getPhotoX();
_y = getPhotoY();
_width = getPhotoWidth();
_height = getPhotoHeight();
}
ShowPhotoInformation();
MotionCount = 0;
trans_ID = transitionID;
if (trans_ID > 28) {
trans_ID -= 28;
}
showPhotoWithMotionInterval = setInterval(showPhotoWithMotion, 1000 / _global.frame_rate);
} else {
maskID = getCurrentMaskID();
_parent.createEmptyMovieClip('mask_mc', 3 + DepthWorking);
_parent.mask_mc.attachMovie('mask_' + maskID, 'mask_clip_mc', 4 + DepthWorking);
_parent.mask_mc._x = getPhotoX();
_parent.mask_mc._y = getPhotoY();
_parent.mc_current_photo.setMask(_parent.mask_mc);
with (_parent.mc_current_photo) {
_alpha = 0;
_x = getPhotoX();
_y = getPhotoY();
_width = getPhotoWidth();
_height = getPhotoHeight();
}
ShowPhotoInformation();
showPhotoInterval = setInterval(showPhotoWithDuration, getCurrentPhotoDuration());
}
}
function transitionCurrentPhoto() {
if (MotionCount == 0) {
transitionID = trans_ID;
if (transitionID == 0) {
trans_ID = random(23) + 1;
} else {
trans_ID = transitionID;
if (trans_ID > 24 || trans_ID < 0) {
trans_ID = random(23) + 1;
}
}
}
transitionCurrentPhotoWithID(trans_ID);
}
function transitionCurrentPhotoWithID(transitionID) {
var v1 = transitionID;
v1 -= 1;
switch (v1) {
case 0:
transitionAlpha();
break;
case 1:
transitionMoveLeftToRight(false);
break;
case 2:
transitionMoveLeftToRight(true);
break;
case 3:
transitionMoveRightToLeft(false);
break;
case 4:
transitionMoveRightToLeft(true);
break;
case 5:
transitionMoveTopToBottom(false);
break;
case 6:
transitionMoveTopToBottom(true);
break;
case 7:
transitionMoveBottomToTop(false);
break;
case 8:
transitionMoveBottomToTop(true);
break;
case 9:
transitionStretchLeftToRight(false);
break;
case 10:
transitionStretchLeftToRight(true);
break;
case 11:
transitionStretchVerticalCenter(false);
break;
case 12:
transitionStretchVerticalCenter(true);
break;
case 13:
transitionStretchRightToLeft(false);
break;
case 14:
transitionStretchRightToLeft(true);
break;
case 15:
transitionStretchTopToBottom(false);
break;
case 16:
transitionStretchTopToBottom(true);
break;
case 17:
transitionStretchHorizontalCenter(false);
break;
case 18:
transitionStretchHorizontalCenter(true);
break;
case 19:
transitionStretchBottomToTop(false);
break;
case 20:
transitionStretchBottomToTop(true);
break;
case 21:
transitionStretchCenter(false);
break;
case 22:
transitionStretchCenter(true);
break;
default:
transitionAlpha();
}
}
function transitionAlpha() {
with (_parent.mc_current_photo) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
}
}
function transitionStretchCenter(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX() + (getPhotoWidth() / 2) * (1 - MotionCount / getCurrentTransitionFrames());
_y = getPhotoY() + (getPhotoHeight() / 2) * (1 - MotionCount / getCurrentTransitionFrames());
_xscale = 100 * MotionCount / getCurrentTransitionFrames();
_yscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_yscale > 100) {
_yscale = 100;
}
if (_xscale > 100) {
_xscale = 100;
}
if (_x < getPhotoX()) {
_x = getPhotoX();
}
if (_y < getPhotoY()) {
_y = getPhotoY();
}
}
}
function transitionStretchTopToBottom(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY();
_xscale = 100;
_yscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_yscale > 100) {
_yscale = 100;
}
}
}
function transitionStretchHorizontalCenter(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY() + (getPhotoHeight() / 2) * (1 - MotionCount / getCurrentTransitionFrames());
_xscale = 100;
_yscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_yscale > 100) {
_yscale = 100;
}
if (_y < getPhotoY()) {
_y = getPhotoY();
}
}
}
function transitionStretchBottomToTop(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY() + getPhotoHeight() * (1 - MotionCount / getCurrentTransitionFrames());
_xscale = 100;
_yscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_yscale > 100) {
_yscale = 100;
}
if (_y < getPhotoY()) {
_y = getPhotoY();
}
}
}
function transitionStretchLeftToRight(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY();
_xscale = 0;
_xscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_xscale > 100) {
_xscale = 100;
}
}
}
function transitionStretchVerticalCenter(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX() + (getPhotoWidth() / 2) * (1 - MotionCount / getCurrentTransitionFrames());
_xscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_xscale > 100) {
_xscale = 100;
}
if (_x < getPhotoX()) {
_x = getPhotoX();
}
}
}
function transitionStretchRightToLeft(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_xscale = 100 * MotionCount / getCurrentTransitionFrames();
if (_xscale > 100) {
_xscale = 100;
}
_x = getPhotoX() + getPhotoWidth() * (1 - MotionCount / getCurrentTransitionFrames());
if (_x < getPhotoX()) {
_x = getPhotoX();
}
}
}
function transitionMoveLeftToRight(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX() + getPhotoWidth() * (MotionCount / getCurrentTransitionFrames() - 1);
_y = getPhotoY();
}
}
function transitionMoveRightToLeft(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_y = getPhotoY();
_x = getPhotoX() + getPhotoWidth() * (1 - MotionCount / getCurrentTransitionFrames());
if (_x <= getPhotoX()) {
_x = getPhotoX();
}
}
}
function transitionMoveTopToBottom(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY() + getPhotoHeight() * (MotionCount / getCurrentTransitionFrames() - 1);
if (_y >= getPhotoY()) {
_y = getPhotoY();
}
}
}
function transitionMoveBottomToTop(bAlpha) {
with (_parent.mc_current_photo) {
if (bAlpha) {
_alpha = 100 * MotionCount / getCurrentTransitionFrames();
if (_alpha > 100) {
_alpha = 100;
}
} else {
_alpha = 100;
}
_x = getPhotoX();
_y = getPhotoY() + getPhotoHeight() * (1 - MotionCount / getCurrentTransitionFrames());
if (_y <= getPhotoY()) {
_y = getPhotoY();
}
}
}
function showPhotoWithMotion() {
transitionCurrentPhoto();
++MotionCount;
if (MotionCount > getCurrentTransitionFrames()) {
with (_parent.mc_current_photo) {
_alpha = 100;
}
clearInterval(showPhotoWithMotionInterval);
showPhotoInterval = setInterval(showPhotoWithDuration, getCurrentShowDuration());
}
}
function showCurrentPhotoNoTransition() {
_parent.mc_current_photo.removeMovieClip();
_parent.mask_mc.removeMovieClip();
_parent.gotoAndStop(currentPhoto + 1 + FramePhotoBegin);
_parent.createEmptyMovieClip('mc_current_photo', 2 + DepthWorking);
duplicateMovieClip('_parent.mc_' + currentPhoto, 'mc_current_photo', 2 + DepthWorking);
with (_parent.mc_current_photo) {
_alpha = 100;
_x = getPhotoX();
_y = getPhotoY();
_width = getPhotoWidth();
_height = getPhotoHeight();
}
if (_global.enableurl == 1) {
_parent.mc_current_photo.onRelease = gotoURL;
}
_parent.mc_current_photo.setMask(null);
ShowPhotoInformation();
if (_global.continueplay == 1) {
showPhotoInterval = setInterval(showPhotoWithDuration, getCurrentPhotoDuration());
}
}
function showCurrentPhotoNoTransitionPlay() {
_parent.mc_current_photo.removeMovieClip();
_parent.mask_mc.removeMovieClip();
_parent.gotoAndStop(currentPhoto + 1 + FramePhotoBegin);
_parent.createEmptyMovieClip('mc_current_photo', 2 + DepthWorking);
duplicateMovieClip('_parent.mc_' + currentPhoto, 'mc_current_photo', 2 + DepthWorking);
with (_parent.mc_current_photo) {
_alpha = 100;
_x = getPhotoX();
_y = getPhotoY();
_width = getPhotoWidth();
_height = getPhotoHeight();
}
if (_global.enableurl == 1) {
_parent.mc_current_photo.onRelease = gotoURL;
}
_parent.mc_current_photo.setMask(null);
ShowPhotoInformation();
if (_global.continueplay == 1) {
showPhotoInterval = setInterval(showPhotoWithDuration, 800);
}
}
function showPhotoWithDuration() {
var v1 = _parent;
v1.mc_current_photo.setMask(null);
v1.mask_mc.removeMovieClip();
if (v1.prev_photo != null) {
removeMovieClip('_parent.prev_photo');
}
duplicateMovieClip(v1.mc_current_photo, '_parent.prev_photo', DepthWorking + 1);
_parent.prev_photo._alpha = 100;
_parent.prev_photo._x = getPhotoX();
_parent.prev_photo._y = getPhotoY();
_parent.prev_photo._width = getPhotoWidth();
_parent.prev_photo._height = getPhotoHeight();
removeMovieClip('_parent.mc_current_photo');
clearInterval(showPhotoInterval);
ShowNextPhoto();
}
function ShowNextPhoto() {
ClearAllTimer();
++currentPhoto;
if (currentPhoto == getTotalPhotos()) {
if (_global.autorepeat == 1) {
_parent.music_mc.gotoAndPlay(1);
currentPhoto = 0;
loadingInterval = setInterval(LoadingPhoto, 200);
} else {
showRepeat();
}
} else {
loadingInterval = setInterval(LoadingPhoto, 200);
}
}
function AutoPlay() {
showPhotoWithDuration();
}
function showPhoto(nWhich) {
ClearAllTimer();
currentPhoto = nWhich;
if (currentPhoto == getTotalPhotos()) {
currentPhoto = 0;
}
if (currentPhoto < 0) {
currentPhoto = 0;
}
loadingInterval = setInterval(LoadingPhotoNoTransition, 200);
}
function ShowNextPhotoManual() {
_parent.playButton.removeMovieClip();
_parent.replayButton.removeMovieClip();
if (currentPhoto >= getTotalPhotos() - 1) {
currentPhoto = 0;
} else {
++currentPhoto;
}
if (_global.continueplay == 0) {
stop_play.gotoAndStop(2);
} else {
stop_play.gotoAndStop(1);
}
ClearAllTimer();
loadingInterval = setInterval(LoadingPhotoNoTransition, 200);
}
function ShowPrevPhoto() {
_parent.playButton.removeMovieClip();
_parent.replayButton.removeMovieClip();
if (currentPhoto <= 0) {
currentPhoto = getTotalPhotos() - 1;
} else {
--currentPhoto;
}
if (_global.continueplay == 0) {
stop_play.gotoAndStop(2);
} else {
stop_play.gotoAndStop(1);
}
ClearAllTimer();
loadingInterval = setInterval(LoadingPhotoNoTransition, 200);
}
function LoadingPhotoNoTransition() {
var v1 = _parent;
infoText.text = 'Photo to Show:' + currentPhoto + ' Frame loaded:' + v1._framesloaded + '/' + v1._totalframes;
if (v1._framesloaded >= currentPhoto + FramePhotoBegin) {
clearInterval(loadingInterval);
HideLoadingInformation();
showCurrentPhotoNoTransition();
} else {
ShowLoadingInformation();
}
}
function LoadingPhotoNoTransitionPlay() {
var v1 = _parent;
infoText.text = 'Photo to Show:' + currentPhoto + ' Frame loaded:' + v1._framesloaded + '/' + v1._totalframes;
if (v1._framesloaded >= currentPhoto + FramePhotoBegin) {
clearInterval(loadingInterval);
HideLoadingInformation();
showCurrentPhotoNoTransitionPlay();
} else {
ShowLoadingInformation();
}
}
function LoadingPhotoNoTransitionPlay() {
var v1 = _parent;
infoText.text = 'Photo to Show:' + currentPhoto + ' Frame loaded:' + v1._framesloaded + '/' + v1._totalframes;
if (v1._framesloaded >= currentPhoto + FramePhotoBegin) {
clearInterval(loadingInterval);
HideLoadingInformation();
showCurrentPhotoNoTransitionPlay();
} else {
ShowLoadingInformation();
}
}
function LoadingPhoto() {
var v1 = _parent;
infoText.text = 'Photo to Show:' + currentPhoto + ' Frame loaded:' + v1._framesloaded + '/' + v1._totalframes;
if (v1._framesloaded >= currentPhoto + FramePhotoBegin) {
clearInterval(loadingInterval);
HideLoadingInformation();
showCurrentPhoto();
} else {
ShowLoadingInformation();
}
}
function enterFrameFunction() {
var v1 = _parent;
addloader();
setAllInfo();
setDecoration();
infoText.text = 'Frame loaded:' + v1._framesloaded + '/' + v1._totalframes;
if (v1._framesloaded >= currentPhoto + FramePhotoBegin) {
delete this.onEnterFrame;
HideLoadingInformation();
if (_global.autoplay == 1) {
showCurrentPhoto();
} else {
showPlay();
}
} else {
ShowLoadingInformation();
}
}
function ClearAllTimer() {
clearInterval(loadingInterval);
clearInterval(showPhotoInterval);
clearInterval(showPhotoWithMotionInterval);
}
function setWholeFlashMask() {
_parent.createEmptyMovieClip('mask_whole_mc', 100 + DepthWorking);
with (_parent.mask_whole_mc) {
beginFill(10485760);
moveTo(0, 0);
lineTo(_global.flash_width, 0);
lineTo(_global.flash_width, _global.flash_height);
lineTo(0, _global.flash_height);
lineTo(0, 0);
endFill();
_x = 0;
_y = 0;
}
_parent.setMask(_parent.mask_whole_mc);
}
function setDecoration() {
_parent.decoration_mc.createEmptyMovieClip('mask_decoration_mc', 96 + DepthWorking);
with (_parent.decoration_mc.mask_decoration_mc) {
beginFill(10485760);
moveTo(getPhotoX(), getPhotoY());
lineTo(getPhotoX() + getPhotoWidth(), getPhotoY());
lineTo(getPhotoX() + getPhotoWidth(), getPhotoY() + getPhotoHeight());
lineTo(getPhotoX(), getPhotoY() + getPhotoHeight());
lineTo(getPhotoX(), getPhotoY());
endFill();
}
_parent.decoration_mc.swapDepths(95 + DepthWorking);
_parent.decoration_mc._alpha = 50;
_parent.decoration_mc.setMask(_parent.decoration_mc.mask_decoration_mc);
}
function GetCurrentPhotoURL() {
return eval('_global.url_' + currentPhoto);
}
function gotoURL() {
targetArray = ['_blank', '_parent', '_self', '_top'];
urlIndex = _global.url_target % 4;
_root.getURL(GetCurrentPhotoURL(), targetArray[urlIndex]);
}
function showRepeat() {
var v1 = _parent;
stop_play.gotoAndStop(2);
v1.attachMovie('replayButton', 'replayButton', 5500, {'_x': getPhotoX() + getPhotoWidth() / 2, '_y': getPhotoX() + getPhotoHeight() / 2, '_alpha': 50});
v1.replayButton.onRelease = function () {
_parent.music_mc.gotoAndPlay(1);
_root.soundstatus = 'on';
stop_play.gotoAndStop(1);
this.removeMovieClip();
currentPhoto = 0;
loadingInterval = setInterval(LoadingPhoto, 200);
};
}
function showPlay() {
var v1 = _parent;
v1.music_mc.stop();
_root.soundstatus = 'off';
v1.attachMovie('playButton', 'playButton', 5500, {'_x': getPhotoX() + getPhotoWidth() / 2, '_y': getPhotoY() + getPhotoHeight() / 2, '_alpha': 50});
v1.playButton.onRelease = function () {
_root.soundstatus = 'on';
stop_play.gotoAndStop(1);
this.removeMovieClip();
_parent.music_mc.play();
if (_global.continueplay == 1) {
loadingInterval = setInterval(LoadingPhotoNoTransitionPlay, 200);
} else {
loadingInterval = setInterval(LoadingPhoto, 200);
}
};
}
var currentPhoto = 0;
var trans_ID = 0;
var MotionCount = 0;
currentPhoto = 0;
FramePhotoBegin = 3;
DepthWorking = 5000;
prev_photo = null;
total_mask = 28;
setWholeFlashMask();
onEnterFrame = enterFrameFunction;
}
}
frame 3 {
_global.title_0 = 'DSC_5366';
}
frame 3 {
_global.title_1 = 'DSC_5367';
}
frame 3 {
_global.title_2 = 'DSC_5368';
}
frame 3 {
_global.title_3 = 'DSC_5370';
}
frame 3 {
_global.title_4 = 'DSC_5371';
}
frame 3 {
_global.title_5 = 'DSC_5376';
}
frame 3 {
_global.title_6 = 'DSC_5377';
}
frame 3 {
_global.title_7 = 'DSC_5380';
}
frame 3 {
_global.title_8 = 'DSC_5381';
}
frame 3 {
_global.title_9 = 'DSC_5382';
}
frame 3 {
_global.title_10 = 'DSC_5390';
}
frame 3 {
_global.title_11 = 'DSC_5391';
}
frame 3 {
_global.title_12 = 'DSC_5392';
}
frame 3 {
_global.title_13 = 'DSC_5393';
}
frame 3 {
_global.title_14 = 'DSC_5397';
}
frame 3 {
_global.title_15 = 'DSC_5398';
}
frame 3 {
_global.title_16 = 'DSC_5412';
}
frame 3 {
_global.title_17 = 'DSC_5414';
}
frame 3 {
_global.title_18 = 'DSC_5415';
}
frame 3 {
_global.title_19 = 'DSC_5416';
}
frame 3 {
_global.title_20 = 'DSC_5417';
}
frame 3 {
_global.title_21 = 'DSC_5418';
}
frame 3 {
_global.title_22 = 'DSC_5419';
}
frame 3 {
_global.title_23 = 'DSC_5425';
}
frame 3 {
_global.title_24 = 'DSC_5429';
}
frame 3 {
_global.title_25 = 'DSC_5431';
}
frame 3 {
_global.title_26 = 'DSC_5432';
}
frame 3 {
_global.title_27 = 'DSC_5435';
}
frame 3 {
_global.title_28 = 'DSC_5436';
}
frame 3 {
_global.title_29 = 'DSC_5437';
}
frame 3 {
_global.title_30 = 'DSC_5438';
}
frame 3 {
_global.title_31 = 'DSC_5440';
}
frame 3 {
_global.title_32 = 'DSC_5441';
}
frame 3 {
_global.title_33 = 'DSC_5442';
}
frame 3 {
_global.title_34 = 'DSC_5443';
}
frame 3 {
_global.title_35 = 'DSC_5446';
}
frame 3 {
_global.title_36 = 'DSC_5449';
}
frame 3 {
_global.title_37 = 'DSC_5451';
}
frame 3 {
_global.title_38 = 'DSC_5452';
}
frame 3 {
_global.title_39 = 'DSC_5453';
}
frame 3 {
_global.title_40 = 'DSC_5456';
}
frame 3 {
_global.title_41 = 'DSC_5462';
}
frame 3 {
_global.title_42 = 'DSC_5463';
}
frame 3 {
_global.title_43 = 'DSC_5464';
}
frame 3 {
_global.title_44 = 'DSC_5466';
}
frame 3 {
_global.title_45 = 'DSC_5470';
}
frame 3 {
_global.title_46 = 'DSC_5473';
}
frame 3 {
_global.title_47 = 'DSC_5474';
}
frame 3 {
_global.title_48 = 'DSC_5478';
}
frame 3 {
_global.title_49 = 'DSC_5479';
}
frame 3 {
_global.title_50 = 'DSC_5480';
}
frame 3 {
_global.title_51 = 'DSC_5482';
}
frame 3 {
_global.title_52 = 'DSC_5483';
}
frame 3 {
_global.title_53 = 'DSC_5484';
}
frame 3 {
_global.title_54 = 'DSC_5486';
}
frame 3 {
_global.title_55 = 'DSC_5487';
}
frame 3 {
_global.title_56 = 'DSC_5488';
}
frame 3 {
_global.title_57 = 'DSC_5490';
}
frame 3 {
_global.title_58 = 'DSC_5491';
}
frame 3 {
_global.title_59 = 'DSC_5493';
}
frame 3 {
_global.title_60 = 'DSC_5494';
}
frame 3 {
_global.title_61 = 'DSC_5495';
}
frame 3 {
_global.title_62 = 'DSC_5496';
}
frame 3 {
_global.title_63 = 'DSC_5501';
}
frame 3 {
_global.title_64 = 'DSC_5505';
}
frame 3 {
_global.title_65 = 'DSC_5506';
}
frame 3 {
_global.title_66 = 'DSC_5507';
}
frame 3 {
_global.title_67 = 'DSC_5509';
}
frame 3 {
_global.title_68 = 'DSC_5510';
}
frame 3 {
_global.title_69 = 'DSC_5511';
}
frame 3 {
_global.title_70 = 'DSC_5515';
}
frame 3 {
_global.title_71 = 'DSC_5516';
}
frame 3 {
_global.title_72 = 'DSC_5519';
}
frame 3 {
_global.title_73 = 'DSC_5525';
}
frame 3 {
_global.url_0 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_1 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_2 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_3 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_4 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_5 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_6 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_7 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_8 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_9 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_10 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_11 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_12 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_13 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_14 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_15 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_16 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_17 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_18 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_19 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_20 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_21 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_22 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_23 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_24 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_25 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_26 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_27 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_28 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_29 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_30 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_31 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_32 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_33 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_34 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_35 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_36 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_37 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_38 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_39 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_40 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_41 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_42 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_43 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_44 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_45 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_46 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_47 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_48 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_49 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_50 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_51 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_52 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_53 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_54 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_55 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_56 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_57 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_58 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_59 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_60 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_61 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_62 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_63 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_64 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_65 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_66 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_67 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_68 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_69 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_70 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_71 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_72 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.url_73 = 'http://www.foto-minor.de/';
}
frame 3 {
_global.trans_id_0 = 29;
}
frame 3 {
_global.trans_id_1 = 29;
}
frame 3 {
_global.trans_id_2 = 29;
}
frame 3 {
_global.trans_id_3 = 29;
}
frame 3 {
_global.trans_id_4 = 29;
}
frame 3 {
_global.trans_id_5 = 29;
}
frame 3 {
_global.trans_id_6 = 29;
}
frame 3 {
_global.trans_id_7 = 29;
}
frame 3 {
_global.trans_id_8 = 29;
}
frame 3 {
_global.trans_id_9 = 29;
}
frame 3 {
_global.trans_id_10 = 29;
}
frame 3 {
_global.trans_id_11 = 29;
}
frame 3 {
_global.trans_id_12 = 29;
}
frame 3 {
_global.trans_id_13 = 29;
}
frame 3 {
_global.trans_id_14 = 29;
}
frame 3 {
_global.trans_id_15 = 29;
}
frame 3 {
_global.trans_id_16 = 29;
}
frame 3 {
_global.trans_id_17 = 29;
}
frame 3 {
_global.trans_id_18 = 29;
}
frame 3 {
_global.trans_id_19 = 29;
}
frame 3 {
_global.trans_id_20 = 29;
}
frame 3 {
_global.trans_id_21 = 29;
}
frame 3 {
_global.trans_id_22 = 29;
}
frame 3 {
_global.trans_id_23 = 29;
}
frame 3 {
_global.trans_id_24 = 29;
}
frame 3 {
_global.trans_id_25 = 29;
}
frame 3 {
_global.trans_id_26 = 29;
}
frame 3 {
_global.trans_id_27 = 29;
}
frame 3 {
_global.trans_id_28 = 29;
}
frame 3 {
_global.trans_id_29 = 29;
}
frame 3 {
_global.trans_id_30 = 29;
}
frame 3 {
_global.trans_id_31 = 29;
}
frame 3 {
_global.trans_id_32 = 29;
}
frame 3 {
_global.trans_id_33 = 29;
}
frame 3 {
_global.trans_id_34 = 29;
}
frame 3 {
_global.trans_id_35 = 29;
}
frame 3 {
_global.trans_id_36 = 29;
}
frame 3 {
_global.trans_id_37 = 29;
}
frame 3 {
_global.trans_id_38 = 29;
}
frame 3 {
_global.trans_id_39 = 29;
}
frame 3 {
_global.trans_id_40 = 29;
}
frame 3 {
_global.trans_id_41 = 29;
}
frame 3 {
_global.trans_id_42 = 29;
}
frame 3 {
_global.trans_id_43 = 29;
}
frame 3 {
_global.trans_id_44 = 29;
}
frame 3 {
_global.trans_id_45 = 29;
}
frame 3 {
_global.trans_id_46 = 29;
}
frame 3 {
_global.trans_id_47 = 29;
}
frame 3 {
_global.trans_id_48 = 29;
}
frame 3 {
_global.trans_id_49 = 29;
}
frame 3 {
_global.trans_id_50 = 29;
}
frame 3 {
_global.trans_id_51 = 29;
}
frame 3 {
_global.trans_id_52 = 29;
}
frame 3 {
_global.trans_id_53 = 29;
}
frame 3 {
_global.trans_id_54 = 29;
}
frame 3 {
_global.trans_id_55 = 29;
}
frame 3 {
_global.trans_id_56 = 29;
}
frame 3 {
_global.trans_id_57 = 29;
}
frame 3 {
_global.trans_id_58 = 29;
}
frame 3 {
_global.trans_id_59 = 29;
}
frame 3 {
_global.trans_id_60 = 29;
}
frame 3 {
_global.trans_id_61 = 29;
}
frame 3 {
_global.trans_id_62 = 29;
}
frame 3 {
_global.trans_id_63 = 29;
}
frame 3 {
_global.trans_id_64 = 29;
}
frame 3 {
_global.trans_id_65 = 29;
}
frame 3 {
_global.trans_id_66 = 29;
}
frame 3 {
_global.trans_id_67 = 29;
}
frame 3 {
_global.trans_id_68 = 29;
}
frame 3 {
_global.trans_id_69 = 29;
}
frame 3 {
_global.trans_id_70 = 29;
}
frame 3 {
_global.trans_id_71 = 29;
}
frame 3 {
_global.trans_id_72 = 29;
}
frame 3 {
_global.trans_id_73 = 29;
}
frame 3 {
_global.trans_0 = 1;
}
frame 3 {
_global.trans_1 = 1;
}
frame 3 {
_global.trans_2 = 1;
}
frame 3 {
_global.trans_3 = 1;
}
frame 3 {
_global.trans_4 = 1;
}
frame 3 {
_global.trans_5 = 1;
}
frame 3 {
_global.trans_6 = 1;
}
frame 3 {
_global.trans_7 = 1;
}
frame 3 {
_global.trans_8 = 1;
}
frame 3 {
_global.trans_9 = 1;
}
frame 3 {
_global.trans_10 = 1;
}
frame 3 {
_global.trans_11 = 1;
}
frame 3 {
_global.trans_12 = 1;
}
frame 3 {
_global.trans_13 = 1;
}
frame 3 {
_global.trans_14 = 1;
}
frame 3 {
_global.trans_15 = 1;
}
frame 3 {
_global.trans_16 = 1;
}
frame 3 {
_global.trans_17 = 1;
}
frame 3 {
_global.trans_18 = 1;
}
frame 3 {
_global.trans_19 = 1;
}
frame 3 {
_global.trans_20 = 1;
}
frame 3 {
_global.trans_21 = 1;
}
frame 3 {
_global.trans_22 = 1;
}
frame 3 {
_global.trans_23 = 1;
}
frame 3 {
_global.trans_24 = 1;
}
frame 3 {
_global.trans_25 = 1;
}
frame 3 {
_global.trans_26 = 1;
}
frame 3 {
_global.trans_27 = 1;
}
frame 3 {
_global.trans_28 = 1;
}
frame 3 {
_global.trans_29 = 1;
}
frame 3 {
_global.trans_30 = 1;
}
frame 3 {
_global.trans_31 = 1;
}
frame 3 {
_global.trans_32 = 1;
}
frame 3 {
_global.trans_33 = 1;
}
frame 3 {
_global.trans_34 = 1;
}
frame 3 {
_global.trans_35 = 1;
}
frame 3 {
_global.trans_36 = 1;
}
frame 3 {
_global.trans_37 = 1;
}
frame 3 {
_global.trans_38 = 1;
}
frame 3 {
_global.trans_39 = 1;
}
frame 3 {
_global.trans_40 = 1;
}
frame 3 {
_global.trans_41 = 1;
}
frame 3 {
_global.trans_42 = 1;
}
frame 3 {
_global.trans_43 = 1;
}
frame 3 {
_global.trans_44 = 1;
}
frame 3 {
_global.trans_45 = 1;
}
frame 3 {
_global.trans_46 = 1;
}
frame 3 {
_global.trans_47 = 1;
}
frame 3 {
_global.trans_48 = 1;
}
frame 3 {
_global.trans_49 = 1;
}
frame 3 {
_global.trans_50 = 1;
}
frame 3 {
_global.trans_51 = 1;
}
frame 3 {
_global.trans_52 = 1;
}
frame 3 {
_global.trans_53 = 1;
}
frame 3 {
_global.trans_54 = 1;
}
frame 3 {
_global.trans_55 = 1;
}
frame 3 {
_global.trans_56 = 1;
}
frame 3 {
_global.trans_57 = 1;
}
frame 3 {
_global.trans_58 = 1;
}
frame 3 {
_global.trans_59 = 1;
}
frame 3 {
_global.trans_60 = 1;
}
frame 3 {
_global.trans_61 = 1;
}
frame 3 {
_global.trans_62 = 1;
}
frame 3 {
_global.trans_63 = 1;
}
frame 3 {
_global.trans_64 = 1;
}
frame 3 {
_global.trans_65 = 1;
}
frame 3 {
_global.trans_66 = 1;
}
frame 3 {
_global.trans_67 = 1;
}
frame 3 {
_global.trans_68 = 1;
}
frame 3 {
_global.trans_69 = 1;
}
frame 3 {
_global.trans_70 = 1;
}
frame 3 {
_global.trans_71 = 1;
}
frame 3 {
_global.trans_72 = 1;
}
frame 3 {
_global.trans_73 = 1;
}
frame 3 {
_global.show_0 = 8;
}
frame 3 {
_global.show_1 = 8;
}
frame 3 {
_global.show_2 = 8;
}
frame 3 {
_global.show_3 = 8;
}
frame 3 {
_global.show_4 = 8;
}
frame 3 {
_global.show_5 = 8;
}
frame 3 {
_global.show_6 = 8;
}
frame 3 {
_global.show_7 = 8;
}
frame 3 {
_global.show_8 = 8;
}
frame 3 {
_global.show_9 = 8;
}
frame 3 {
_global.show_10 = 8;
}
frame 3 {
_global.show_11 = 8;
}
frame 3 {
_global.show_12 = 8;
}
frame 3 {
_global.show_13 = 8;
}
frame 3 {
_global.show_14 = 8;
}
frame 3 {
_global.show_15 = 8;
}
frame 3 {
_global.show_16 = 8;
}
frame 3 {
_global.show_17 = 8;
}
frame 3 {
_global.show_18 = 8;
}
frame 3 {
_global.show_19 = 8;
}
frame 3 {
_global.show_20 = 8;
}
frame 3 {
_global.show_21 = 8;
}
frame 3 {
_global.show_22 = 8;
}
frame 3 {
_global.show_23 = 8;
}
frame 3 {
_global.show_24 = 8;
}
frame 3 {
_global.show_25 = 8;
}
frame 3 {
_global.show_26 = 8;
}
frame 3 {
_global.show_27 = 8;
}
frame 3 {
_global.show_28 = 8;
}
frame 3 {
_global.show_29 = 8;
}
frame 3 {
_global.show_30 = 8;
}
frame 3 {
_global.show_31 = 8;
}
frame 3 {
_global.show_32 = 8;
}
frame 3 {
_global.show_33 = 8;
}
frame 3 {
_global.show_34 = 8;
}
frame 3 {
_global.show_35 = 8;
}
frame 3 {
_global.show_36 = 8;
}
frame 3 {
_global.show_37 = 8;
}
frame 3 {
_global.show_38 = 8;
}
frame 3 {
_global.show_39 = 8;
}
frame 3 {
_global.show_40 = 8;
}
frame 3 {
_global.show_41 = 8;
}
frame 3 {
_global.show_42 = 8;
}
frame 3 {
_global.show_43 = 8;
}
frame 3 {
_global.show_44 = 8;
}
frame 3 {
_global.show_45 = 8;
}
frame 3 {
_global.show_46 = 8;
}
frame 3 {
_global.show_47 = 8;
}
frame 3 {
_global.show_48 = 8;
}
frame 3 {
_global.show_49 = 8;
}
frame 3 {
_global.show_50 = 8;
}
frame 3 {
_global.show_51 = 8;
}
frame 3 {
_global.show_52 = 8;
}
frame 3 {
_global.show_53 = 8;
}
frame 3 {
_global.show_54 = 8;
}
frame 3 {
_global.show_55 = 8;
}
frame 3 {
_global.show_56 = 8;
}
frame 3 {
_global.show_57 = 8;
}
frame 3 {
_global.show_58 = 8;
}
frame 3 {
_global.show_59 = 8;
}
frame 3 {
_global.show_60 = 8;
}
frame 3 {
_global.show_61 = 8;
}
frame 3 {
_global.show_62 = 8;
}
frame 3 {
_global.show_63 = 8;
}
frame 3 {
_global.show_64 = 8;
}
frame 3 {
_global.show_65 = 8;
}
frame 3 {
_global.show_66 = 8;
}
frame 3 {
_global.show_67 = 8;
}
frame 3 {
_global.show_68 = 8;
}
frame 3 {
_global.show_69 = 8;
}
frame 3 {
_global.show_70 = 8;
}
frame 3 {
_global.show_71 = 8;
}
frame 3 {
_global.show_72 = 8;
}
frame 3 {
_global.show_73 = 8;
}
frame 3 {
_global.file_0 = 'images\\0.jpg';
}
frame 3 {
_global.file_1 = 'images\\1.jpg';
}
frame 3 {
_global.file_2 = 'images\\2.jpg';
}
frame 3 {
_global.file_3 = 'images\\3.jpg';
}
frame 3 {
_global.file_4 = 'images\\4.jpg';
}
frame 3 {
_global.file_5 = 'images\\5.jpg';
}
frame 3 {
_global.file_6 = 'images\\6.jpg';
}
frame 3 {
_global.file_7 = 'images\\7.jpg';
}
frame 3 {
_global.file_8 = 'images\\8.jpg';
}
frame 3 {
_global.file_9 = 'images\\9.jpg';
}
frame 3 {
_global.file_10 = 'images\\10.jpg';
}
frame 3 {
_global.file_11 = 'images\\11.jpg';
}
frame 3 {
_global.file_12 = 'images\\12.jpg';
}
frame 3 {
_global.file_13 = 'images\\13.jpg';
}
frame 3 {
_global.file_14 = 'images\\14.jpg';
}
frame 3 {
_global.file_15 = 'images\\15.jpg';
}
frame 3 {
_global.file_16 = 'images\\16.jpg';
}
frame 3 {
_global.file_17 = 'images\\17.jpg';
}
frame 3 {
_global.file_18 = 'images\\18.jpg';
}
frame 3 {
_global.file_19 = 'images\\19.jpg';
}
frame 3 {
_global.file_20 = 'images\\20.jpg';
}
frame 3 {
_global.file_21 = 'images\\21.jpg';
}
frame 3 {
_global.file_22 = 'images\\22.jpg';
}
frame 3 {
_global.file_23 = 'images\\23.jpg';
}
frame 3 {
_global.file_24 = 'images\\24.jpg';
}
frame 3 {
_global.file_25 = 'images\\25.jpg';
}
frame 3 {
_global.file_26 = 'images\\26.jpg';
}
frame 3 {
_global.file_27 = 'images\\27.jpg';
}
frame 3 {
_global.file_28 = 'images\\28.jpg';
}
frame 3 {
_global.file_29 = 'images\\29.jpg';
}
frame 3 {
_global.file_30 = 'images\\30.jpg';
}
frame 3 {
_global.file_31 = 'images\\31.jpg';
}
frame 3 {
_global.file_32 = 'images\\32.jpg';
}
frame 3 {
_global.file_33 = 'images\\33.jpg';
}
frame 3 {
_global.file_34 = 'images\\34.jpg';
}
frame 3 {
_global.file_35 = 'images\\35.jpg';
}
frame 3 {
_global.file_36 = 'images\\36.jpg';
}
frame 3 {
_global.file_37 = 'images\\37.jpg';
}
frame 3 {
_global.file_38 = 'images\\38.jpg';
}
frame 3 {
_global.file_39 = 'images\\39.jpg';
}
frame 3 {
_global.file_40 = 'images\\40.jpg';
}
frame 3 {
_global.file_41 = 'images\\41.jpg';
}
frame 3 {
_global.file_42 = 'images\\42.jpg';
}
frame 3 {
_global.file_43 = 'images\\43.jpg';
}
frame 3 {
_global.file_44 = 'images\\44.jpg';
}
frame 3 {
_global.file_45 = 'images\\45.jpg';
}
frame 3 {
_global.file_46 = 'images\\46.jpg';
}
frame 3 {
_global.file_47 = 'images\\47.jpg';
}
frame 3 {
_global.file_48 = 'images\\48.jpg';
}
frame 3 {
_global.file_49 = 'images\\49.jpg';
}
frame 3 {
_global.file_50 = 'images\\50.jpg';
}
frame 3 {
_global.file_51 = 'images\\51.jpg';
}
frame 3 {
_global.file_52 = 'images\\52.jpg';
}
frame 3 {
_global.file_53 = 'images\\53.jpg';
}
frame 3 {
_global.file_54 = 'images\\54.jpg';
}
frame 3 {
_global.file_55 = 'images\\55.jpg';
}
frame 3 {
_global.file_56 = 'images\\56.jpg';
}
frame 3 {
_global.file_57 = 'images\\57.jpg';
}
frame 3 {
_global.file_58 = 'images\\58.jpg';
}
frame 3 {
_global.file_59 = 'images\\59.jpg';
}
frame 3 {
_global.file_60 = 'images\\60.jpg';
}
frame 3 {
_global.file_61 = 'images\\61.jpg';
}
frame 3 {
_global.file_62 = 'images\\62.jpg';
}
frame 3 {
_global.file_63 = 'images\\63.jpg';
}
frame 3 {
_global.file_64 = 'images\\64.jpg';
}
frame 3 {
_global.file_65 = 'images\\65.jpg';
}
frame 3 {
_global.file_66 = 'images\\66.jpg';
}
frame 3 {
_global.file_67 = 'images\\67.jpg';
}
frame 3 {
_global.file_68 = 'images\\68.jpg';
}
frame 3 {
_global.file_69 = 'images\\69.jpg';
}
frame 3 {
_global.file_70 = 'images\\70.jpg';
}
frame 3 {
_global.file_71 = 'images\\71.jpg';
}
frame 3 {
_global.file_72 = 'images\\72.jpg';
}
frame 3 {
_global.file_73 = 'images\\73.jpg';
}
movieClip 201 {
frame 1 {
_parent.attachMovie('control', 'control', 5200);
_parent.attachMovie('soundControl', 'soundControl', 5030);
_parent.soundControl._y = -1000;
_parent.soundControl._x = -1000;
}
}
movieClip 203 {
}
movieClip 206 {
}
movieClip 209 {
}
movieClip 212 {
}
movieClip 215 {
}
movieClip 218 {
}
movieClip 221 {
}
movieClip 224 {
}
movieClip 227 {
}
movieClip 230 {
}
movieClip 233 {
}
movieClip 236 {
}
movieClip 239 {
}
movieClip 242 {
}
movieClip 245 {
}
movieClip 248 {
}
movieClip 251 {
}
movieClip 254 {
}
movieClip 257 {
}
movieClip 260 {
}
movieClip 263 {
}
movieClip 266 {
}
movieClip 269 {
}
movieClip 272 {
}
movieClip 275 {
}
movieClip 278 {
}
movieClip 281 {
}
movieClip 284 {
}
movieClip 287 {
}
movieClip 290 {
}
movieClip 293 {
}
movieClip 296 {
}
movieClip 299 {
}
movieClip 302 {
}
movieClip 305 {
}
movieClip 308 {
}
movieClip 311 {
}
movieClip 314 {
}
movieClip 317 {
}
movieClip 320 {
}
movieClip 323 {
}
movieClip 326 {
}
movieClip 329 {
}
movieClip 332 {
}
movieClip 335 {
}
movieClip 338 {
}
movieClip 341 {
}
movieClip 344 {
}
movieClip 347 {
}
movieClip 350 {
}
movieClip 353 {
}
movieClip 356 {
}
movieClip 359 {
}
movieClip 362 {
}
movieClip 365 {
}
movieClip 368 {
}
movieClip 371 {
}
movieClip 374 {
}
movieClip 377 {
}
movieClip 380 {
}
movieClip 383 {
}
movieClip 386 {
}
movieClip 389 {
}
movieClip 392 {
}
movieClip 395 {
}
movieClip 398 {
}
movieClip 401 {
}
movieClip 404 {
}
movieClip 407 {
}
movieClip 410 {
}
movieClip 413 {
}
movieClip 416 {
}
movieClip 419 {
}
movieClip 422 {
}
movieClip 425 {
}