Frame 1
this.setMask(movieShapeMaskMC);
Frame 2
play();
Frame 3
play();
Frame 4
stop();
Frame 5
gotoAndPlay ("loopstart");
Symbol 18 MovieClip Frame 1
stop();
var i = 0;
while (i < 5) {
this["EffectBar" + i]._visible = true;
this["EffectBar" + i].onEnterFrame = function () {
this._yscale = this._yscale - ((this._yscale - (random(80) + 20)) / 2);
};
i++;
}
Symbol 20 MovieClip Frame 1
stop();
var i = 0;
while (i < 5) {
this["EffectBar" + i]._visible = true;
this["EffectBar" + i]._yscale = 20 * (i + 1);
i++;
}
Symbol 21 MovieClip Frame 1
stop();
this.onRelease = function () {
var _local2 = new Sound();
_local2.setVolume(0);
_parent.VolumeSlideMC._x = _parent.VolumeBarMC._x;
nextFrame();
};
Symbol 21 MovieClip Frame 2
stop();
this.onRelease = function () {
var _local2 = new Sound();
_local2.setVolume(volumeValue);
_parent.VolumeSlideMC._x = _parent.VolumeBarMC._x + ((_parent.VolumeBarMC._width * volumeValue) / 100);
prevFrame();
};
Symbol 8 MovieClip Frame 1
ParamsValue = "<ParamsValue><Bg.Color>0xFFFFFF</Bg.Color><Bg.AutoStart>true</Bg.AutoStart><Bg.AutoStart>True</Bg.AutoStart></ParamsValue>";
ParamsDefine = "<ParamsDefine><Bg.Color caption=\"Color\" type=\"color\" default=\"0xFFFFFF\"/><Bg.AutoStart caption=\"Auto Start\" type=\"bool\" default=\"true\"/></ParamsDefine>";
param = new Array();
if (ParamsValue != null) {
paramXML = new XML(ParamsValue);
paramXML.ignoreWhite = true;
var i = 0;
while (i < paramXML.childNodes[0].childNodes.length) {
node = paramXML.childNodes[0].childNodes[i];
param[node.nodeName] = node.childNodes[0].nodeValue;
i++;
}
param["Bg.Color"] = parseInt(param["Bg.Color"]);
param["Bg.AutoStart"] = param["Bg.AutoStart"].toLowerCase() == "true";
} else {
param["Bg.Color"] = 16777215 /* 0xFFFFFF */;
param["Bg.AutoStart"] = true;
}
var myColor = new Color(this);
myColor.setRGB(param["Bg.Color"]);
var globalVolume = 100;
soundSwitch.volumeValue = globalVolume;
var globalSound = new Sound();
if (!param["Bg.AutoStart"]) {
globalSound.setVolume(0);
soundSwitch.gotoAndStop(2);
VolumeSlideMC._x = VolumeBarMC._x;
} else {
globalSound.setVolume(globalVolume);
soundSwitch.gotoAndStop(1);
VolumeSlideMC._x = VolumeBarMC._x + ((VolumeBarMC._width * globalVolume) / 100);
}
VolumeBarMC.onPress = function () {
VolumeSlideMC._x = this._xmouse + this._x;
globalVolume = (100 * this._xmouse) / this._width;
var _local2 = new Sound();
_local2.setVolume(globalVolume);
soundSwitch.volumeValue = globalVolume;
};
VolumeSlideMC.onPress = function () {
startDrag (this, false, VolumeBarMC._x, VolumeSlideMC._y, VolumeBarMC._x + VolumeBarMC._width, VolumeSlideMC._y);
globalVolume = (100 * (VolumeSlideMC._x - VolumeBarMC._x)) / (VolumeBarMC._width - VolumeSlideMC._width);
var _local2 = new Sound();
_local2.setVolume(globalVolume);
soundSwitch.volumeValue = globalVolume;
};
VolumeSlideMC.onRelease = function () {
stopDrag();
globalVolume = (100 * (VolumeSlideMC._x - VolumeBarMC._x)) / (VolumeBarMC._width - VolumeSlideMC._width);
var _local1 = new Sound();
_local1.setVolume(globalVolume);
soundSwitch.volumeValue = globalVolume;
};
VolumeSlideMC.onReleaseOutside = VolumeSlideMC.onRelease;