Frame 1
if (_root.laddat == undefined) {
_root.zoomi = 5;
_root.laddat = 0;
_root.pausat = 0;
} else if (_root.laddat == 100) {
gotoAndStop (3);
}
_root.laddat = Math.round(10000 * (_root.getBytesLoaded() / _root.getBytesTotal())) / 100;
_root.procent.text = _root.laddat + "%";
Frame 2
gotoAndPlay (1);
Frame 3
if (_root.bgm == undefined) {
_root.bgm = 1;
_root.origw = _root.content._width;
_root.origh = _root.content._height;
Tune = new Sound(this);
_root.truewidth = 400;
}
Symbol 13 Button
on (keyPress "<Space>") {
if (_root.pausat == 0) {
_root.pausat = 1;
_root.content.stop();
} else {
_root.pausat = 0;
_root.content.play();
}
}
on (release) {
if (_root.zoomi == 5) {
_root.zoomi = 6;
} else if (_root.zoomi == 10) {
_root.zoomi = 1;
}
}
Symbol 16 Button
on (release) {
if (_root.bgm == 1) {
_root.bgm = 2;
_root.Tune.stop();
_root.Tune.attachSound("ripzone");
_root.Tune.start(0, 99);
} else {
_root.bgm = 1;
_root.Tune.stop();
_root.Tune.attachSound("HentairellaIntro");
_root.Tune.start(20, 99);
}
}
Symbol 21 MovieClip Frame 1
if ((_root.zoomi > 5) && (_root.zoomi < 10)) {
nyssw = _root.content._width;
multiplyer = nyssw / (800 - ((_root.sidebar._width - 5) + _root.sidebar._x));
_root.sidebar._x = _root.sidebar._x - ((_root.zoomi - 5) * 45);
_root.content._x = _root.content._x - ((_root.zoomi - 5) * 45);
if (_root.zoomi == 9) {
_root.sidebar._x = -406;
_root.content._x = 0;
_root.content._width = 800;
_root.truewidth = 800 - ((_root.sidebar._width - 5) + _root.sidebar._x);
} else {
_root.content._width = 800 - ((_root.sidebar._width - 5) + _root.sidebar._x);
}
_root.content._width = _root.content._width * multiplyer;
_root.content._height = _root.content._height * (_root.content._width / nyssw);
_root.zoomi = _root.zoomi + 1;
} else if ((_root.zoomi > 0) && (_root.zoomi < 5)) {
if (_root.zoomi == 1) {
_root.content._width = _root.truewidth;
}
nyssw = _root.content._width;
multiplyer = nyssw / (800 - ((_root.sidebar._width - 5) + _root.sidebar._x));
_root.sidebar._x = _root.sidebar._x + (_root.zoomi * 45);
_root.content._x = _root.content._x + (_root.zoomi * 45);
if ((_root.sidebar._x >= 0) || (_root.zoomi == 4)) {
_root.sidebar._x = 0;
_root.content._x = 400;
}
_root.content._width = 800 - ((_root.sidebar._width - 5) + _root.sidebar._x);
_root.content._width = _root.content._width * multiplyer;
_root.content._height = _root.content._height * (_root.content._width / nyssw);
_root.zoomi = _root.zoomi + 1;
}
Symbol 26 MovieClip Frame 1
if (_root.bgm == 1) {
_root.Tune.stop();
_root.Tune.attachSound("HentairellaIntro");
_root.Tune.start(0, 1);
}
Symbol 26 MovieClip Frame 226
Symbol 26 MovieClip Frame 2799