Combined Code
frame 1 {
stop();
_root.onEnterFrame = function () {
percentage = Math.round((this.getBytesLoaded() / this.getBytesTotal()) * 100);
Clock.Hour._rotation = percentage * 3.6;
Clock.Minute._rotation = Clock.Hour._rotation * 12;
if (percentage >= 100) {
delete _root.onEnterFrame;
gotoAndPlay(5);
}
};
}
movieClip 4 {
}
movieClip 6 {
}
movieClip 8 {
}
movieClip 14 {
}
instance of movieClip 14 {
onClipEvent (enterFrame) {
if (_root.beenhere == true) {
this._alpha = 50;
} else {
this._alpha = 0;
}
}
onClipEvent (release) {
_root.gotoAndStop(360);
}
}
frame 360 {
var beenhere = true;
stop();
}
movieClip 22 {
}
instance of movieClip 14 {
onClipEvent (release) {
_root.gotoAndStop(5);
}
}