Frame 1
Textturnloading._alpha = 100;
Countercount._alpha = 100;
RenaSymbol._alpha = 100;
Texttitle._alpha = 100;
RenaSymbol._alpha = 100;
Textinstruct._alpha = 100;
Blende._alpha = 100;
Textturnloading.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
if (Textturnloading._alpha <= 0) {
delete Textturnloading.onEnterFrame;
} else {
Textturnloading._alpha = Textturnloading._alpha - 6;
}
}
};
RenaSymbol.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
if (RenaSymbol._alpha <= 0) {
delete RenaSymbol.onEnterFrame;
} else {
RenaSymbol._alpha = RenaSymbol._alpha - 6;
}
}
};
Texttitle.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
if (Texttitle._alpha <= 0) {
delete Texttitle.onEnterFrame;
} else {
Texttitle._alpha = Texttitle._alpha - 2;
}
}
};
Textinstruct.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
if (Textinstruct._alpha <= 0) {
delete Textinstruct.onEnterFrame;
} else {
Textinstruct._alpha = Textinstruct._alpha - 2;
}
}
};
Countercount.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
Countercount._alpha = 0;
if (Countercount._alpha <= 0) {
delete Countercount.onEnterFrame;
}
}
};
Blende.onEnterFrame = function () {
if (_root._currentFrame >= 6) {
if (Blende._alpha <= 0) {
delete Blende.onEnterFrame;
} else {
Blende._alpha = Blende._alpha - 6;
}
}
};
Counterfull.onEnterFrame = function () {
if (_root._currentFrame < 6) {
Counterfull._alpha = 0;
}
if (_root._currentFrame == 7) {
Counterfull._alpha = 100;
}
if (_root._currentFrame > 8) {
if (Counterfull._alpha <= 0) {
delete Blende.onEnterFrame;
} else {
Counterfull._alpha = Counterfull._alpha - 6;
}
}
};
Texttitle._y = (Stage.height / 10) * 0.7;
Texttitle._x = Stage.width / 2;
Textturnloading._y = (Stage.height / 10) * 1.9;
Textturnloading._x = Stage.width / 2;
RenaSymbol._y = (Stage.height / 10) * 4.6;
RenaSymbol._x = Stage.width / 2;
Countercount._y = (Stage.height / 10) * 8.6;
Countercount._x = Stage.width / 2;
Counterfull._y = (Stage.height / 10) * 8.6;
Counterfull._x = Stage.width / 2;
Textinstruct._y = (Stage.height / 10) * 9.4;
Textinstruct._x = Stage.width / 2;
onEnterFrame = function () {
myLoaded = Math.round(getBytesLoaded());
myTotal = Math.round(getBytesTotal());
myPercent = myLoaded / myTotal;
myText = Math.round(myPercent * 100) + "%";
};
ifFrameLoaded (366) {
gotoAndPlay ("start");
}
Instance of Symbol 5 MovieClip "Textinstruct" in Frame 1
/* no clip actions */
Frame 5
gotoAndPlay (1);
Frame 6
pauseButton._y = Stage.height - 25;
prevButton._y = Stage.height - 25;
nextButton._y = Stage.height - 25;
pauseButton._x = 27.5;
prevButton._x = 62.5;
nextButton._x = 97.5;
onEnterFrame = function () {
if (Key.isDown(38)) {
_global.isPlaying = false;
setProperty("_root.nextButton", _visible , false);
setProperty("_root.prevButton", _visible , false);
movieClip.play();
_global.isPlaying = false;
}
if (Key.isDown(40)) {
_global.isPlaying = true;
setProperty("_root.nextButton", _visible , true);
setProperty("_root.prevButton", _visible , true);
movieClip.stop();
_global.isPlaying = true;
}
if (Key.isDown(37)) {
_global.isPlaying = true;
setProperty("_root.nextButton", _visible , true);
setProperty("_root.prevButton", _visible , true);
_global.isPlaying = true;
if (movieClip._currentFrame == 1) {
movieClip.gotoAndStop(360);
} else {
movieClip.prevFrame();
}
}
if (Key.isDown(39)) {
_global.isPlaying = true;
setProperty("_root.nextButton", _visible , true);
setProperty("_root.prevButton", _visible , true);
_global.isPlaying = true;
if (movieClip._currentFrame == 360) {
movieClip.gotoAndStop(1);
} else {
movieClip.nextFrame();
}
}
};
setProperty("nextButton", _visible , false);
setProperty("prevButton", _visible , false);
Frame 366
gotoAndPlay (81);
Symbol 21 MovieClip Frame 1
setProperty(blendesize, _height , stage.height);
setProperty(blendesize, _width , stage.width);
Symbol 26 Button
on (release) {
if (movieClip._currentFrame == 1) {
movieClip.gotoAndStop(360);
} else {
movieClip.prevFrame();
}
}
Symbol 30 Button
on (release) {
if (movieClip._currentFrame == 360) {
movieClip.gotoAndStop(1);
} else {
movieClip.nextFrame();
}
}
Symbol 34 Button
on (release) {
movieClip.toggleMe();
}
Symbol 36 MovieClip Frame 1
function toggleMe() {
if (_global.isPlaying) {
setProperty("_root.nextButton", _visible , false);
setProperty("_root.prevButton", _visible , false);
play();
_global.isPlaying = false;
} else {
setProperty("_root.nextButton", _visible , true);
setProperty("_root.prevButton", _visible , true);
stop();
_global.isPlaying = true;
}
}
_global.isPlaying = false;