Combined Code
// unknown tag 88 length 608
movieClip 6 {
}
movieClip 7 {
frame 1 {
function moveCircles() {
thisMC._x = _root._xmouse;
thisMC._y = _root._ymouse;
var v2 = new flash.filters.GlowFilter(color, 100, glowI, glowI, 2, 3);
mcCircle.filters = [v2];
txtLoad.filters = [v2];
txtLoad.text = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + '%';
mcCircle._rotation += 7;
if (glowDir != true) {
glowI -= 0.5;
} else {
glowI += 0.5;
}
glowI;
if (glowI == 15) {
glowDir = false;
} else {
if (glowI == 5) {
glowDir = true;
}
}
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
thisMC._alpha -= 3;
if (thisMC._alpha < 0) {
Mouse.show();
clearInterval(moveCirclesI);
delete glowI;
delete glowDir;
delete moveCirclesI;
delete thisMC;
delete color;
delete changeColor;
_root.gotoAndPlay(2);
}
}
}
_root.stop();
Mouse.hide();
var color = 10092288;
var changeColor = new Color(mcCircle);
changeColor.setRGB(color);
txtLoad.textColor = color;
var glowI = 5;
var glowDir = true;
var thisMC = this;
thisMC._x = _root._xmouse;
thisMC._y = _root._ymouse;
var moveCirclesI = setInterval(moveCircles, 20);
}
}
frame 211 {
gotoAndPlay(2);
}