Frame 1
stop();
Instance of Symbol 10 MovieClip "loader" in Frame 1
onClipEvent (enterFrame) {
var total = _root.getBytesTotal();
var totalLoaded = _root.getBytesLoaded();
var percent = int((totalLoaded / total) * 100);
if (percent == 100) {
this.loadtxt = "Loading Done !";
_root.play();
delete this.onEnterFrame;
} else {
this.loadtxt = ("Loading ... (" + percent) + "%)";
}
}
Frame 2
var movievar = 1;
stop();
Instance of Symbol 3 MovieClip "c2" in Symbol 6 MovieClip Frame 1
onClipEvent (load) {
var moep = random(480);
this._rotation = 6 * moep;
_parent.c1._rotation = 0.75 * moep;
}
Symbol 7 MovieClip [clock] Frame 18
var fspeed = 10;
if (_root.movievar == 1) {
_root.attachMovie("clock", _root.movievar, _root.getNextHighestDepth());
_root.movievar = 2;
this.swapDepths(_root.getNextHighestDepth());
_root.s.swapDepths(_root.getNextHighestDepth());
this.onEnterFrame = function () {
if (this._alpha < 0) {
this._alpha = 0;
this.removeMovieClip();
delete this.onEnterFrame;
} else {
this._alpha = this._alpha - fspeed;
}
};
} else {
_root.attachMovie("clock", _root.movievar, _root.getNextHighestDepth());
_root.movievar = 1;
this.swapDepths(_root.getNextHighestDepth());
_root.s.swapDepths(_root.getNextHighestDepth());
this.onEnterFrame = function () {
if (this._alpha < 0) {
this._alpha = 0;
this.removeMovieClip();
delete this.onEnterFrame;
} else {
this._alpha = this._alpha - fspeed;
}
};
}
Symbol 7 MovieClip [clock] Frame 20
stop();
Symbol 16 Button
on (release) {
getURL ("http://www.xblaze.de/", "_blank");
}