Frame 1
var bytes_gesamt = 0;
var bytes_geladen = 0;
var prozent = 0;
_root.preload = "";
stop();
loading.gotoAndPlay(1);
_root.onEnterFrame = function () {
bytes_gesamt = _root.getBytesTotal();
bytes_geladen = _root.getBytesLoaded();
array = Array(bytes_gesamt, bytes_geladen);
if ((bytes_gesamt / 1024) >= 1000) {
bytes_gesamt = (bytes_gesamt / 1024) / 1024;
bytes_gesamt_einheit = "MB";
} else {
bytes_gesamt = bytes_gesamt / 1024;
bytes_gesamt_einheit = " KB";
}
if ((bytes_geladen / 1024) >= 1000) {
bytes_geladen = (bytes_geladen / 1024) / 1024;
bytes_geladen_einheit = " MB";
} else {
bytes_geladen = bytes_geladen / 1024;
bytes_geladen_einheit = " KB";
}
_root.preload = (((Math.ceil(bytes_geladen) + bytes_geladen_einheit) + " / ") + Math.ceil(bytes_gesamt)) + bytes_gesamt_einheit;
prozent = int((array[0] * 100) / array[1]);
if (prozent == 100) {
gotoAndStop (2);
}
};
Frame 2
stop();
mc_play.mc_play_maske._alpha = 0;
mc_play.mc_play_button._alpha = 66;
mc_play.mc_play_maske.mc_play_kreisel.gotoAndPlay(1);
_root.onEnterFrame = function () {
mc_play.mc_play_button.onRollOver = function () {
mc_play.mc_play_maske._alpha = 100;
mc_play.mc_play_button._alpha = 100;
};
mc_play.mc_play_button.onRollOut = function () {
mc_play.mc_play_maske._alpha = 0;
mc_play.mc_play_button._alpha = 66;
};
mc_play.mc_play_button.onRelease = function () {
mc_play.mc_play_maske._alpha = 0;
mc_play.mc_play_button._alpha = 0;
gotoAndPlay (3);
};
};
Frame 3
stop();
mc_video.gotoAndPlay(1);
Symbol 5 MovieClip Frame 99
gotoAndPlay (1);
Symbol 7 MovieClip Frame 200
gotoAndPlay (1);