Frame 1
this.stop();
this.moveScene = function (scene) {
if (scene == 1) {
this.attachMovie("mcStarting", "mcStarting", 1);
}
if (scene == 2) {
this.attachMovie("mcTutorial", "mcTutorial", 1);
}
if (scene == 3) {
this.attachMovie("mcStage", "mcStage", 1);
}
if (scene == 4) {
this.attachMovie("mcEnding", "mcEnding", 1);
}
};
this.moveScene(1);
Symbol 41 MovieClip [mcHeaderHitArea] Frame 1
this._x = 0;
this._y = 0;
this._alpha = 0;
this.onPress = function () {
};
Symbol 43 MovieClip [mcFooterHitArea] Frame 1
this._x = 0;
this._y = Stage.height - this._height;
this._alpha = 0;
this.onEnterFrame = function () {
if (((((((_parent.mcOpenArea.enabled == undefined) && (_parent.mcCloseArea.enabled == undefined)) && (_parent.mcMessageArea.mcMessageText.enabled == undefined)) && (_parent.mcInfoArea.sInfoIcon == "")) && (_parent.mcGetArea.mcGetBuff.enabled == undefined)) && (_parent.mcDragArea.mcItemBuff.enabled == undefined)) && (_parent.mcCinemaArea.mcCinemaScope.enabled == undefined)) {
if (_parent.mcHeaderHitArea.hitTest(_root._xmouse, _root._ymouse, true) || (_parent.mcFooterHitArea.hitTest(_root._xmouse, _root._ymouse, true))) {
_parent.mcHeaderArea.MoveIn();
_parent.mcFooterArea.MoveIn();
} else {
_parent.mcHeaderArea.MoveOut();
_parent.mcFooterArea.MoveOut();
}
}
};
this.onPress = function () {
};
Symbol 53 MovieClip Frame 1
var listSlide = ["mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty", "mcItemEmpty"];
var aObjWidth = [];
var aObjEndWidth = [];
var aObjEndPoint = [];
var dTotalWidth = 0;
var dTotalList = this.listSlide.length;
var dCurrentPoint = 5;
var dFlatValue = 1.25;
var dRateValue = 0.3;
var dDurmX = this._x;
var bState = false;
var obj_x = 0;
var obj_y = 0;
var obj_r = 0;
var obj_s = 0;
this.AttachItem = function () {
this.dTotalWidth = 0;
this.dTotalList = this.listSlide.length;
i = 0;
while (i < dTotalList) {
this.attachMovie(this.listSlide[i], "mcBuff" + i, i);
this.aObjWidth[i] = this["mcBuff" + i]._width;
if (dCurrentPoint != i) {
this["mcBuff" + i]._width = this["mcBuff" + i]._width / (Math.abs(i - dCurrentPoint) * dFlatValue);
} else {
this["mcBuff" + i]._width = this["mcBuff" + i]._width * 0.99;
}
this["mcBuff" + i]._x = this.dTotalWidth;
this.dTotalWidth = this.dTotalWidth + this["mcBuff" + i]._width;
i++;
}
w = 0;
i = 0;
while (i < dCurrentPoint) {
w = w + this["mcBuff" + i]._width;
i++;
}
this._x = dDurmX - ((w - (_parent.mcSlideMask._width / 2)) + (this["mcBuff" + dCurrentPoint]._width / 2));
};
this.AttachItem();
this.DelItem = function (sObj) {
aBuff = [];
i = 0;
while (i < dTotalList) {
if (this.listSlide[i] != sObj) {
aBuff.push(this.listSlide[i]);
}
i++;
}
this.listSlide = aBuff;
this.AttachItem();
};
this.AddItem = function (sObj) {
aBuff = [];
this.dCurrentPoint = 5;
i = 0;
while (i < dTotalList) {
if (i == this.dCurrentPoint) {
aBuff.push(sObj);
}
aBuff.push(this.listSlide[i]);
i++;
}
this.listSlide = aBuff;
this.AttachItem();
};
this.MoveLeft = function () {
if ((this.dCurrentPoint < (this.dTotalList - 6)) && (this.bState == false)) {
_parent._parent.PlaySound("soundSlider");
this.bState = true;
i = 0;
while (i < this.dTotalList) {
if (this.dCurrentPoint != (i - 1)) {
this.aObjEndPoint[i] = this["mcBuff" + i]._x - (this.aObjWidth[i] / (Math.abs(this.dCurrentPoint - (i - 1)) * this.dFlatValue));
} else {
this.aObjEndPoint[i] = this["mcBuff" + i]._x - this.aObjWidth[i];
}
if (this.dCurrentPoint != (i - 1)) {
this.aObjEndWidth[i] = this.aObjWidth[i] / (Math.abs(this.dCurrentPoint - (i - 1)) * this.dFlatValue);
} else {
this.aObjEndWidth[i] = this.aObjWidth[i] * 0.99;
}
i++;
}
this.dCurrentPoint++;
this.onEnterFrame = function () {
i = 0;
while (i < this.dTotalList) {
this["mcBuff" + i]._x = this["mcBuff" + i]._x - ((this["mcBuff" + i]._x - this.aObjEndPoint[i]) * dRateValue);
this["mcBuff" + i]._width = this["mcBuff" + i]._width + ((this.aObjEndWidth[i] - this["mcBuff" + i]._width) * dRateValue);
i++;
}
if ((this["mcBuff" + this.dCurrentPoint]._x - this.aObjEndPoint[this.dCurrentPoint]) < 0.2) {
this.bState = false;
i = 0;
while (i < this.dTotalList) {
this["mcBuff" + i]._x = this.aObjEndPoint[i];
this["mcBuff" + i]._width = this.aObjEndWidth[i];
i++;
}
delete this.onEnterFrame;
}
};
} else {
_parent._parent.PlaySound("soundCommonSliderBtn");
}
};
this.MoveRight = function () {
if ((this.dCurrentPoint > 5) && (this.bState == false)) {
_parent._parent.PlaySound("soundSlider");
this.bState = true;
i = 0;
while (i < this.dTotalList) {
if (this.dCurrentPoint != i) {
this.aObjEndPoint[i] = this["mcBuff" + i]._x + (this.aObjWidth[i] / (Math.abs(this.dCurrentPoint - i) * this.dFlatValue));
} else {
this.aObjEndPoint[i] = this["mcBuff" + i]._x + this.aObjWidth[i];
}
if (this.dCurrentPoint != (i + 1)) {
this.aObjEndWidth[i] = this.aObjWidth[i] / (Math.abs(this.dCurrentPoint - (i + 1)) * this.dFlatValue);
} else {
this.aObjEndWidth[i] = this.aObjWidth[i] * 0.99;
}
i++;
}
this.dCurrentPoint--;
this.onEnterFrame = function () {
i = 0;
while (i < this.dTotalList) {
this["mcBuff" + i]._x = this["mcBuff" + i]._x + ((this.aObjEndPoint[i] - this["mcBuff" + i]._x) * dRateValue);
this["mcBuff" + i]._width = this["mcBuff" + i]._width + ((this.aObjEndWidth[i] - this["mcBuff" + i]._width) * dRateValue);
i++;
}
if ((this.aObjEndPoint[this.dCurrentPoint] - this["mcBuff" + this.dCurrentPoint]._x) < 0.2) {
this.bState = false;
i = 0;
while (i < this.dTotalList) {
this["mcBuff" + i]._x = this.aObjEndPoint[i];
this["mcBuff" + i]._width = this.aObjEndWidth[i];
i++;
}
delete this.onEnterFrame;
}
};
} else {
_parent._parent.PlaySound("soundSlider");
}
};
this.PressCurrentObj = function () {
this["mcBuff" + dCurrentPoint].onPress();
};
Symbol 63 MovieClip Frame 1
this.mcBtnRightUp._visible = true;
this.mcBtnRightDown._visible = false;
this.stop();
this.onPress = function () {
this.mcBtnRightUp._visible = false;
this.mcBtnRightDown._visible = true;
};
this.onRelease = function () {
this.mcBtnRightUp._visible = true;
this.mcBtnRightDown._visible = false;
_parent.mcSlider.MoveLeft();
};
this.onReleaseOutside = function () {
this.mcBtnRightUp._visible = true;
this.mcBtnRightDown._visible = false;
};
Symbol 70 MovieClip Frame 1
this.mcBtnLeftUp._visible = true;
this.mcBtnLeftDown._visible = false;
this.stop();
this.onPress = function () {
this.mcBtnLeftUp._visible = false;
this.mcBtnLeftDown._visible = true;
};
this.onRelease = function () {
this.mcBtnLeftUp._visible = true;
this.mcBtnLeftDown._visible = false;
_parent.mcSlider.MoveRight();
};
this.onReleaseOutside = function () {
this.mcBtnLeftUp._visible = true;
this.mcBtnLeftDown._visible = false;
};
Symbol 71 MovieClip [mcFooterArea] Frame 1
this._x = 0;
this._y = Stage.height;
var dSpeed = 0.25;
var xStart = this._x;
var yStart = this._y;
var xEnd = _parent.mcFooterHitArea._x;
var yEnd = _parent.mcFooterHitArea._y;
this.MoveIn = function () {
this.onEnterFrame = function () {
this._x = this._x + ((xEnd - this._x) * dSpeed);
this._y = this._y + ((yEnd - this._y) * dSpeed);
if ((Math.abs(xEnd - this._x) < 0.4) && (Math.abs(yEnd - this._y) < 0.4)) {
this._x = xEnd;
this._y = yEnd;
}
};
};
this.MoveOut = function () {
this.onEnterFrame = function () {
this._x = this._x + ((xStart - this._x) * dSpeed);
this._y = this._y + ((yStart - this._y) * dSpeed);
if ((Math.abs(xStart - this._x) < 0.4) && (Math.abs(yEnd - this._y) < 0.4)) {
this._x = xStart;
this._y = yStart;
}
};
};
Symbol 81 MovieClip Frame 1
this.onEnterFrame = function () {
objDate = new Date();
dHour = objDate.getHours();
dMinute = objDate.getMinutes();
dMilliSecond = objDate.getMilliseconds();
if (dHour < 10) {
dHour = "0" + dHour;
}
if (dMinute < 10) {
dMinute = "0" + dMinute;
}
if (dMilliSecond < 500) {
this.mcColon._visible = true;
} else {
this.mcColon._visible = false;
}
tTimeH.text = dHour;
tTimeM.text = dMinute;
};
Symbol 82 MovieClip [mcHeaderArea] Frame 1
this._x = 0;
this._y = -this._height;
var dSpeed = 0.25;
var xStart = this._x;
var yStart = this._y;
var xEnd = _parent.mcHeaderHitArea._x;
var yEnd = _parent.mcHeaderHitArea._y;
this.MoveIn = function () {
this.onEnterFrame = function () {
this._x = this._x + ((xEnd - this._x) * dSpeed);
this._y = this._y + ((yEnd - this._y) * dSpeed);
if ((Math.abs(xEnd - this._x) < 0.4) && (Math.abs(yEnd - this._y) < 0.4)) {
this._x = xEnd;
this._y = yEnd;
}
};
};
this.MoveOut = function () {
this.onEnterFrame = function () {
this._x = this._x + ((xStart - this._x) * dSpeed);
this._y = this._y + ((yStart - this._y) * dSpeed);
if ((Math.abs(xStart - this._x) < 0.4) && (Math.abs(yEnd - this._y) < 0.4)) {
this._x = xStart;
this._y = yStart;
}
};
};
Symbol 87 MovieClip [mcItemToolBox] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoToolBox") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoToolBox");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoToolBox");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragToolBox");
};
Symbol 90 MovieClip [mcItemTenGallon2] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoTenGallon2") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoTenGallon2");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoTenGallon2");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragTenGallon2");
};
Symbol 93 MovieClip [mcItemTenGallon1] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoTenGallon1") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoTenGallon1");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoTenGallon1");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragTenGallon1");
};
Symbol 96 MovieClip [mcItemSSS4] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoSSS4") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoSSS4");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoSSS4");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragSSS4");
};
Symbol 99 MovieClip [mcItemSSS2] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoSSS2") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoSSS2");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoSSS2");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragSSS2");
};
Symbol 102 MovieClip [mcItemShoes] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoShoes") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoShoes");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoShoes");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragShoes");
};
Symbol 105 MovieClip [mcItemObj] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoObj") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoObj");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoObj");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragObj");
};
Symbol 108 MovieClip [mcItemRadio] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoRadio") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoRadio");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoRadio");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragRadio");
};
Symbol 111 MovieClip [mcItemPackage] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoPackage") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoPackage");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoPackage");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragPackage");
};
Symbol 114 MovieClip [mcItemLastKey] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoLastKey") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoLastKey");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoLastKey");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragLastKey");
};
Symbol 117 MovieClip [mcItemGun2] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoGun2") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoGun2");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoGun2");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragGun2");
};
Symbol 118 MovieClip [mcItemGun1] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoGun1") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoGun1");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoGun1");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragGun1");
};
Symbol 121 MovieClip [mcItemDish] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoDish") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoDish");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoDish");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragDish");
};
Symbol 124 MovieClip [mcItemFish] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoFish") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoFish");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoFish");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragFish");
};
Symbol 127 MovieClip [mcItemHera] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoHera") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoHera");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoHera");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragHera");
};
Symbol 130 MovieClip [mcItemKnife] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoKnife") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoKnife");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoKnife");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragKnife");
};
Symbol 133 MovieClip [mcItemDriver] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoDriver") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoDriver");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoDriver");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragDriver");
};
Symbol 136 MovieClip [mcItemBattery] Frame 1
this.stop();
this.onRelease = function () {
if (_parent._parent._parent.mcInfoArea.sInfoIcon != "mcInfoBattery") {
this.gotoAndPlay(2);
if (_parent._parent._parent.mcInfoArea.sInfoIcon == "") {
_parent._parent._parent.mcInfoArea.FadeIn("mcInfoBattery");
} else {
_parent._parent._parent.mcInfoArea.In("mcInfoBattery");
}
}
};
this.onDragOut = function () {
_parent._parent._parent.mcDragArea.attachObj("mcDragBattery");
};
Symbol 137 MovieClip [mcDragDish] Frame 1
var keyFlg = "mcMainMainDoor";
var ddObj = "mcMainMainDoor";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if ((this._droptarget.lastIndexOf(ddObj) == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg == false)) {
if ((this._droptarget.lastIndexOf("mcMainCurtain") == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg == false)) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 138 MovieClip [mcDragFish] Frame 1
var ddObj = "mcMain7";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime("Fish");
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 149 MovieClip [mcInfoPackage] Frame 1
this.stop();
var sInfoMessage = "\u5C02\u52D9\u5B9B\u306E\u5C0F\u5305\u3002";
var sInfoResearch = "";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
this.play();
};
Symbol 149 MovieClip [mcInfoPackage] Frame 2
this.onPress = function () {
};
Symbol 149 MovieClip [mcInfoPackage] Frame 12
_parent._parent.PlaySound("soundInfoPackage1", 99);
Symbol 149 MovieClip [mcInfoPackage] Frame 47
_parent._parent.StopSound("soundInfoPackage1");
Symbol 149 MovieClip [mcInfoPackage] Frame 54
_parent._parent.PlaySound("soundInfoPackage2", 1);
Symbol 149 MovieClip [mcInfoPackage] Frame 66
_parent._parent.mcGetArea.RollIn(this, "mcGetGun1");
_parent.FadeOut();
Symbol 151 MovieClip Frame 1
this._alpha = 0;
Symbol 162 MovieClip [mcInfoObj] Frame 1
this.stop();
var sInfoMessage = "\u524D\u885B\u7684\u306A\u7F6E\u7269\u3002";
var sInfoResearch = "";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
this.play();
};
Symbol 162 MovieClip [mcInfoObj] Frame 2
this.onPress = function () {
};
Symbol 162 MovieClip [mcInfoObj] Frame 32
_parent._parent.PlaySound("soundInfoObj", 1);
Symbol 162 MovieClip [mcInfoObj] Frame 44
_parent._parent.mcGetArea.RollIn(this, "mcGetSSS4");
_parent.FadeOut();
Symbol 167 MovieClip [mcInfoRadio] Frame 1
this.stop();
var sInfoMessage = "\u30AB\u30BB\u30C3\u30C8\u30E9\u30B8\u30AA\u3002\u3044\u308D\u3044\u308D\u30DC\u30BF\u30F3\u3064\u3044\u3066\u308B\u306A\u3041\u3002";
var sInfoResearch = "";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
this.play();
};
Symbol 167 MovieClip [mcInfoRadio] Frame 2
this.onPress = function () {
};
Symbol 167 MovieClip [mcInfoRadio] Frame 45
_parent._parent.mcGetArea.RollIn(this, "mcGetBattery");
_parent.FadeOut();
Symbol 172 MovieClip [mcInfoToolBox] Frame 1
this.stop();
var sInfoMessage = "\u304A\u9053\u5177\u7BB1\u3002\u304A\u7236\u3055\u3093\u7CFB\u306E\u7269\u304C\u5165\u3063\u3066\u305D\u3046\u3060\u3002";
var sInfoResearch = "";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
this.play();
};
Symbol 172 MovieClip [mcInfoToolBox] Frame 2
this.onPress = function () {
};
Symbol 172 MovieClip [mcInfoToolBox] Frame 49
_parent._parent.mcGetArea.RollIn(this, "mcGetDriver");
_parent.FadeOut();
Symbol 177 MovieClip [mcInfoGun1] Frame 1
this.stop();
var sInfoMessage = "\u62F3\u9283\u3002\u6301\u3063\u3066\u307F\u308B\u3068\u7D50\u69CB\u8EFD\u3044\u3082\u3093\u3060\u3002";
var sInfoResearch = "";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
this.play();
};
Symbol 177 MovieClip [mcInfoGun1] Frame 2
this.onPress = function () {
};
Symbol 177 MovieClip [mcInfoGun1] Frame 13
_parent._parent.PlaySound("soundInfoGun", 99);
Symbol 177 MovieClip [mcInfoGun1] Frame 36
_parent._parent.StopSound("soundInfoGun");
Symbol 177 MovieClip [mcInfoGun1] Frame 37
_parent._parent.mcGetArea.RollIn(this, "mcGetGun2");
_parent.FadeOut();
Symbol 178 MovieClip [mcDragBattery] Frame 1
var keyFlg = "***";
var ddObj = "mcMainSoket";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 179 MovieClip [mcGetToolBox] Frame 1
var sGetName = "\u304A\u9053\u5177\u7BB1\u3002\n\u304A\u3044\u3001\u964D\u3063\u3066\u304D\u305F\u305E\u3002\u3042\u3076\u306D\u3047\u306A\u3041\u2026\u3002";
var sGetItemName = "mcItemToolBox";
var sDelItemName = "";
Symbol 180 MovieClip [mcGetTenGallon2] Frame 1
var sGetName = "\u30A6\u30A8\u30B9\u30BF\u30F3\u6751\u306E\u30C6\u30F3\u30AC\u30EB\u30F3\u30CF\u30C3\u30C8\u3002\n\u305F\u3077\u305F\u3077\u3060\u3002";
var sGetItemName = "mcItemTenGallon2";
var sDelItemName = "mcItemTenGallon1";
Symbol 181 MovieClip [mcGetTenGallon1] Frame 1
var sGetName = "\u30A6\u30A8\u30B9\u30BF\u30F3\u6751\u306E\u30C6\u30F3\u30AC\u30EB\u30F3\u30CF\u30C3\u30C8\u3002\n\u793E\u54E1\u65C5\u884C\u306B\u884C\u3063\u305F\u6642\u306E\u304A\u571F\u7523\u3060\u308D\u3046\u3002";
var sGetItemName = "mcItemTenGallon1";
var sDelItemName = "";
Symbol 182 MovieClip [mcGetSSS4] Frame 1
var sGetName = "\u300C\u305B\u300D\u5370\u306E\u5BB9\u5668\u3002";
var sGetItemName = "mcItemSSS4";
var sDelItemName = "mcItemObj";
Symbol 183 MovieClip [mcGetSSS2] Frame 1
var sGetName = "\u300C\u3057\u300D\u5370\u306E\u5BB9\u5668\u3002";
var sGetItemName = "mcItemSSS2";
var sDelItemName = "";
Symbol 184 MovieClip [mcGetShoes] Frame 1
var sGetName = "\u30B9\u30EA\u30C3\u30D1\u306E\u7247\u5272\u308C\u3002\n\u306A\u305C\u3001\u3042\u3093\u306A\u3068\u3053\u308D\u306B\u65B0\u54C1\u306E\u30B9\u30EA\u30C3\u30D1\u304C\u2026\u3002";
var sGetItemName = "mcItemShoes";
var sDelItemName = "";
Symbol 185 MovieClip [mcGetRadio] Frame 1
var sGetName = "\u58CA\u308C\u304B\u3051\u306E\u30AB\u30BB\u30C3\u30C8\u30E9\u30B8\u30AA\u3002\n\u6599\u7406\u306B\u306F\u3001\u97F3\u697D\u306F\u6B20\u304B\u305B\u306A\u3044\u3068\u3044\u3046\u3053\u3068\u304B\u2026\u306A\u3002";
var sGetItemName = "mcItemRadio";
var sDelItemName = "";
Symbol 186 MovieClip [mcGetObj] Frame 1
var sGetName = "\u524D\u885B\u7684\u306A\u7F6E\u7269\u3002";
var sGetItemName = "mcItemObj";
var sDelItemName = "";
Symbol 187 MovieClip [mcGetPackage] Frame 1
var sGetName = "\u5C0F\u5305\u3002\n\u53F0\u6240\u306B\u7F6E\u304D\u3063\u3071\u306A\u3057\u306B\u3059\u308B\u306A\u3088\u3002";
var sGetItemName = "mcItemPackage";
var sDelItemName = "";
Symbol 188 MovieClip [mcGetLastKey] Frame 1
var sGetName = "\u51B7\u8535\u5EAB\u306E\u9375\u3002\n\u306A\u305C\u3001\u30AB\u30C3\u30D1\u304C\u9375\u3092\u6301\u3063\u3066\u3044\u308B\u3093\u3060\u308D\u3046\u2026\u3002";
var sGetItemName = "mcItemLastKey";
var sDelItemName = "mcItemDish";
Symbol 189 MovieClip [mcGetGun2] Frame 1
var sGetName = "\u5B9F\u306F\u3001\u30E9\u30A4\u30BF\u30FC\u3002";
var sGetItemName = "mcItemGun2";
var sDelItemName = "mcItemGun1";
Symbol 190 MovieClip [mcGetGun1] Frame 1
var sGetName = "\u62F3\u9283\u3002\n\u306A\u3093\u3067\u5C0F\u5305\u304B\u3089\u62F3\u9283\u304C\u2026\u3002";
var sGetItemName = "mcItemGun1";
var sDelItemName = "mcItemPackage";
Symbol 191 MovieClip [mcGetDish] Frame 1
var sGetName = "\u30AB\u30C3\u30D1\u306E\u76BF\u3002\u3060\u3044\u3076\u8584\u6C5A\u308C\u3066\u3044\u308B\u3002\n\u4F55\u56DE\u3001\u30C1\u30F3\u3055\u308C\u305F\u3093\u3060\u308D\u3046\u2026\u3002";
var sGetItemName = "mcItemDish";
var sDelItemName = "";
Symbol 192 MovieClip [mcGetFish] Frame 1
var sGetName = "\u79CB\u5200\u9B5A\u3002\n\u3044\u3084\uFF5E\u3001\u79CB\u306E\u5473\u899A\u3060\u306A\u3002\u4ECA\u3001\u6625\u3060\u3051\u3069\u3002";
var sGetItemName = "mcItemFish";
var sDelItemName = "";
Symbol 193 MovieClip [mcGetHera] Frame 1
var sGetName = "\u304A\u597D\u307F\u713C\u304D\u306E\u3078\u3089\u3002\u3057\u304B\u3057\u3001\u305D\u3093\u306A\u306B\u5927\u4E8B\u3082\u306E\u306A\u306E\u3060\u308D\u3046\u304B\u2026\u3002\n\u307E\u3041\u3001\u4FA1\u5024\u89B3\u306F\u4EBA\u305D\u308C\u305E\u308C\u3063\u3066\u3053\u3068\u3060\u306A\u3002\u5171\u611F\u306F\u3067\u304D\u3093\u304C\u7406\u89E3\u306F\u3057\u3088\u3046\u3002";
var sGetItemName = "mcItemHera";
var sDelItemName = "";
Symbol 194 MovieClip [mcGetKnife] Frame 1
var sGetName = "\u6599\u7406\u5305\u4E01\u3002\n\u3046\u3080\u3001\u3088\u304F\u624B\u5165\u308C\u3055\u308C\u3066\u3044\u308B\u306A\u3002";
var sGetItemName = "mcItemKnife";
var sDelItemName = "";
Symbol 195 MovieClip [mcGetDriver] Frame 1
var sGetName = "\u306D\u3058\u56DE\u3057\u3002\n\u5148\u7AEF\u304C\u30DE\u30B0\u30CD\u30C3\u30C8\u306B\u306A\u3063\u3066\u3044\u308B\u512A\u308C\u3082\u306E\u3060\u3002";
var sGetItemName = "mcItemDriver";
var sDelItemName = "mcItemToolBox";
Symbol 196 MovieClip [mcGetBattery] Frame 1
var sGetName = "\u6709\u540D\u30E1\u30FC\u30AB\u30FC\u306E\u4E7E\u96FB\u6C60\u3002\n\u3084\u3063\u3071\u308A\u96FB\u6C60\u306F\u30DE\u30F3\u30AC\u30F3\u3067\u3057\u3087\u3002";
var sGetItemName = "mcItemBattery";
var sDelItemName = "mcItemRadio";
Symbol 197 MovieClip [mcDragHera] Frame 1
var keyFlg = "";
var ddObj = "mcMainRange";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if ((this._droptarget.lastIndexOf(ddObj) == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg == false)) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 198 MovieClip [mcDragKnife] Frame 1
var keyFlg = "";
var ddObj = "mcMainTenGallon";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if ((this._droptarget.lastIndexOf(ddObj) == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg == false)) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 199 MovieClip [mcDragDriver] Frame 1
var keyFlg = "mcMainRange";
var ddObj = "mcMainRange";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if ((this._droptarget.lastIndexOf(ddObj) == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg == false)) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 200 MovieClip [mcDragToolBox] Frame 1
var keyFlg = "***";
var ddObj = "***";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea.mcMainTansu[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 201 MovieClip [mcDragTenGallon2] Frame 1
var keyFlg = "***";
var ddObj = "mcMainTank";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 202 MovieClip [mcDragTenGallon1] Frame 1
var ddObj = "mcMainWater";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 203 MovieClip [mcDragSSS4] Frame 1
var keyFlg = "mcMainSSS";
var ddObj = "mcMainSSS";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime("SSS4");
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 204 MovieClip [mcDragSSS2] Frame 1
var keyFlg = "mcMainSSS";
var ddObj = "mcMainSSS";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime("SSS2");
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 205 MovieClip [mcDragShoes] Frame 1
var keyFlg = "mcMainTV";
var ddObj = "mcMainTV";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if ((this._droptarget.lastIndexOf(ddObj) == -1) || (_parent._parent.mcMainArea[keyFlg].storyFlg != true)) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 206 MovieClip [mcDragObj] Frame 1
var keyFlg = "***";
var ddObj = "***";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea.mcMainTansu[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 207 MovieClip [mcDragRadio] Frame 1
var keyFlg = "***";
var ddObj = "***";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea.mcMainTansu[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 208 MovieClip [mcDragPackage] Frame 1
var keyFlg = "***";
var ddObj = "***";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea.mcMainTansu[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 209 MovieClip [mcDragLastKey] Frame 1
var keyFlg = "***";
var ddObj = "mcMainHole";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 210 MovieClip [mcDragGun2] Frame 1
var keyFlg = "***";
var ddObj = "mcMain7";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea[ddObj].dropAnime("Fire");
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 211 MovieClip [mcDragGun1] Frame 1
var keyFlg = "***";
var ddObj = "***";
_parent.startObjDrag(this);
var xEnd = this._x;
var yEnd = this._y;
this.onMouseUp = function () {
thisObj.stopDrag();
if (this._droptarget.lastIndexOf(ddObj) == -1) {
_parent.endObjDrag(this);
} else {
_parent._parent.mcMainArea.mcMainTansu[ddObj].dropAnime();
_parent._parent.mcItemArea.mcSlider.DelItem(ddObj);
this.removeMovieClip();
}
};
Symbol 213 MovieClip [mcInfoLastKey] Frame 1
this.stop();
var sInfoMessage = "\u51B7\u8535\u5EAB\u306E\u9375\u3002\n\u307E\u3041\u3001\u958B\u3051\u3066\u307F\u308B\u304B\u2026\u3002";
var sInfoResearch = "\u9280\u306B\u8F1D\u304F\u6700\u7D42\u9053\u5177\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 214 MovieClip [mcInfoGun2] Frame 1
this.stop();
var sInfoMessage = "\u62F3\u9283\u578B\u30E9\u30A4\u30BF\u30FC\u3002";
var sInfoResearch = "\u3088\u304F\u898B\u305F\u3089\u30D7\u30E9\u30C3\u30C1\u30C3\u30AF\u3060\u306A\u3053\u308C\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 216 MovieClip [mcInfoTenGallon2] Frame 1
this.stop();
var sInfoMessage = "\u304A\u6C34\u305F\u3063\u3077\u308A\u30C6\u30F3\u30AC\u30EB\u30F3\u30CF\u30C3\u30C8\u3002";
var sInfoResearch = "\u6C34\u304C\u5FC5\u8981\u306A\u3068\u3053\u308D\u306F\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 218 MovieClip [mcInfoTenGallon1] Frame 1
this.stop();
var sInfoMessage = "\u30A6\u30A8\u30B9\u30BF\u30F3\u6751\u306E\u30C6\u30F3\u30AC\u30EB\u30F3\u30CF\u30C3\u30C8\u3002";
var sInfoResearch = "\u30DB\u30F3\u30C8\u306B\u6C34\u304C10Gallon\u3082\u5165\u308B\u306E\u304B\u306A\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 220 MovieClip [mcInfoSSS4] Frame 1
this.stop();
var sInfoMessage = "\u300C\u305B\u300D\u5370\u306E\u5BB9\u5668\u3002";
var sInfoResearch = "\u4E2D\u306B\u9ED2\u3044\u6DB2\u4F53\u304C\u5165\u3063\u3066\u3044\u308B\u3088\u3046\u3060\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 222 MovieClip [mcInfoSSS2] Frame 1
this.stop();
var sInfoMessage = "\u300C\u3057\u300D\u5370\u306E\u5BB9\u5668\u3002";
var sInfoResearch = "\u4E2D\u306B\u767D\u3044\u7C89\u304C\u5165\u3063\u3066\u3044\u308B\u3088\u3046\u3060\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 224 MovieClip [mcInfoShoes] Frame 1
this.stop();
var sInfoMessage = "\u30B9\u30EA\u30C3\u30D1\u306E\u7247\u5272\u308C\u3002\u5C65\u304D\u5FC3\u5730\u306F\u826F\u3055\u305D\u3046\u3060\u3002";
var sInfoResearch = "\u88CF\u306B\u9ED2\u3044\u7269\u4F53\u304C\u4ED8\u7740\u3057\u3066\u3044\u308B\u3002\u53E9\u3044\u3066\u3057\u307E\u3063\u305F\u304B\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 226 MovieClip [mcInfoDish] Frame 1
this.stop();
var sInfoMessage = "\u30AB\u30C3\u30D1\u306E\u76BF\u3002";
var sInfoResearch1 = "\u306A\u3093\u3060\u3053\u308C\u3002";
var sInfoResearch2 = "\u3053\u308C\u3092\u6E21\u305B\u3070\u5E30\u3063\u3066\u304F\u308C\u308B\u304B\u306A\u3002";
var keyFlg = "mcMainMainDoor";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
if (!_parent._parent.mcMainArea[keyFlg].storyFlg) {
_parent.txtBuff = this.sInfoResearch1;
} else {
_parent.txtBuff = this.sInfoResearch2;
}
};
Symbol 228 MovieClip [mcInfoFish] Frame 1
this.stop();
var sInfoMessage = "\u79CB\u5200\u9B5A\u3002\u3046\u3080\u3001\u306A\u304B\u306A\u304B\u3046\u307E\u305D\u3046\u3060\u3002";
var sInfoResearch = "\u3055\u3059\u304C\u306B\u751F\u306E\u307E\u307E\u3067\u306F\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 230 MovieClip [mcInfoHera] Frame 1
this.stop();
var sInfoMessage = "\u304A\u597D\u307F\u713C\u304D\u306E\u3078\u3089\u3002\u9244\u88FD\u3067\u7D50\u69CB\u786C\u3044\u3002";
var sInfoResearch = "\u3053\u308C\u3092\u4F7F\u3063\u3066\u7121\u7406\u3084\u308A\u958B\u3051\u308C\u3070\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 232 MovieClip [mcInfoKnife] Frame 1
this.stop();
var sInfoMessage = "\u5305\u4E01\u3002\u3088\u304F\u5207\u308C\u305D\u3046\u306A\u611F\u3058\u304C\u3059\u308B\u3002";
var sInfoResearch = "\u3055\u3066\u3001\u4F55\u3092\u5207\u308D\u3046\u304B\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 234 MovieClip [mcInfoDriver] Frame 1
this.stop();
var sInfoMessage = "\u30CD\u30B8\u56DE\u3057\u3002\u5916\u3059\u6642\u306F\u2026\u3069\u3063\u3061\u56DE\u3057\u3060\u3063\u305F\u304B\u306A\u3002";
var sInfoResearch = "\u30CD\u30B8\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u308B\u3082\u306E\u304B\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 236 MovieClip [mcInfoBattery] Frame 1
this.stop();
var sInfoMessage = "\u30DE\u30F3\u30AC\u30F3\u4E7E\u96FB\u6C60\u3002\u84C4\u96FB\u306F\u305F\u3063\u3077\u308A\u3060\u3002";
var sInfoResearch = "\u3069\u3053\u304B\u306B\u5165\u308C\u3066\u307F\u308B\u304B\u2026\u3002";
_parent.itemFade(this);
this.onPress = function () {
_parent.attachMovie("mcInfoResearch", "mcInfoResearch", 2);
_parent.Research();
_parent.txtBuff = this.sInfoResearch;
};
Symbol 237 MovieClip [mcGetArea] Frame 1
var bFlg = false;
this.RollIn = function (mcObj, sGetName) {
if (this.bFlg == false) {
_parent.PlaySound("soundGetIn", 1);
this.attachMovie("mcGetBG", "mcGetBG", 1);
_parent.mcMessageArea.FadeOutMessage();
myPoint = {x:0, y:0};
mcObj.localToGlobal(myPoint);
x = myPoint.x + (mcObj._width / 2);
y = myPoint.y + (mcObj._height / 2);
this.attachMovie(sGetName, "mcGetBuff", 3);
this.mcGetBuff._x = x;
this.mcGetBuff._y = y;
this.mcGetBuff._xscale = 1;
this.mcGetBuff._yscale = 1;
this.mcGetBuff._rotation = 90;
xEnd = Stage.width / 2;
yEnd = (Stage.height / 2) - 25;
xsEnd = 100;
ysEnd = 100;
dSpeed = 250;
dAxl = 1.3;
xSpeed = (xEnd - this.mcGetBuff._x) / dSpeed;
ySpeed = (yEnd - this.mcGetBuff._y) / dSpeed;
xsSpeed = (xsEnd - this.mcGetBuff._xscale) / dSpeed;
ysSpeed = (ysEnd - this.mcGetBuff._yscale) / dSpeed;
_parent.mcHeaderArea.MoveOut();
_parent.mcFooterArea.MoveOut();
this.onEnterFrame = function () {
this.xSpeed = this.xSpeed * this.dAxl;
this.ySpeed = this.ySpeed * this.dAxl;
this.xsSpeed = this.xsSpeed * this.dAxl;
this.ysSpeed = this.ysSpeed * this.dAxl;
if (Math.abs(xEnd - this.mcGetBuff._x) < Math.abs(this.xSpeed)) {
_parent.StopSound("soundGetIn");
_parent.PlaySound("soundGetStop", 1);
this.mcGetBuff._x = this.xEnd;
this.mcGetBuff._y = this.yEnd;
this.mcGetBuff._xscale = this.xsEnd;
this.mcGetBuff._yscale = this.ysEnd;
this.mcGetBuff._rotation = 0;
this.attachMovie("mcGetFront", "mcGetFront", 2);
this.mcGetFront._x = this.xEnd;
this.mcGetFront._y = this.yEnd;
this.attachMovie("mcGetItem", "mcGetItem", 4);
this.mcGetItem._x = this.xEnd;
this.mcGetItem._y = this.yEnd + 100;
_parent.mcMessageArea.FadeInMessage(this.mcGetBuff.sGetName);
if (this.mcGetBuff.sGetItemName != "") {
_parent.mcFooterArea.mcSlider.AddItem(this.mcGetBuff.sGetItemName);
}
if (this.mcGetBuff.sDelItemName != "") {
_parent.mcFooterArea.mcSlider.DelItem(this.mcGetBuff.sDelItemName);
}
this.bFlg = false;
delete this.onEnterFrame;
} else {
this.mcGetBuff._x = this.mcGetBuff._x + this.xSpeed;
this.mcGetBuff._y = this.mcGetBuff._y + this.ySpeed;
this.mcGetBuff._xscale = this.mcGetBuff._xscale + this.xsSpeed;
this.mcGetBuff._yscale = this.mcGetBuff._yscale + this.ysSpeed;
this.mcGetBuff._rotation = this.mcGetBuff._rotation + 90;
}
};
this.bFlg = true;
}
};
this.RollOut = function () {
if (this.bFlg == false) {
_parent.PlaySound("soundGetOut");
_parent.mcMessageArea.FadeOutMessage(this.mcGetBuff[sGetIcon].sGetStatus);
this.onEnterFrame = function () {
this.mcGetBuff._alpha = this.mcGetBuff._alpha - 15;
this.mcGetBuff._xscale = this.mcGetBuff._xscale + 3;
this.mcGetBuff._yscale = this.mcGetBuff._yscale + 3;
this.mcGetFront.removeMovieClip();
this.mcGetItem.removeMovieClip();
if (this.mcGetBuff._alpha <= 0) {
this.mcGetBuff.removeMovieClip();
this.mcGetBG.removeMovieClip();
this.bFlg = false;
delete this.onEnterFrame;
}
};
this.bFlg = true;
}
};
Symbol 238 MovieClip Frame 1
this.onPress = function () {
};
Symbol 254 MovieClip Frame 1
this.onPress = function () {
_parent.FadeOut();
};
Symbol 256 MovieClip [mcInfoArea] Frame 1
this.stop();
var sInfoIcon = "";
var mag = 1.1;
this.mcItemBuff.removeMovieClip();
this.mcInfoResearch.removeMovieClip();
this.FadeIn = function (sBuff) {
this.sInfoIcon = sBuff;
this.gotoAndPlay("FadeIn");
};
this.In = function (sBuff) {
this.sInfoIcon = sBuff;
this.gotoAndPlay("In");
};
this.FadeOut = function () {
if (this._currentframe != 1) {
this.gotoAndPlay("FadeOut");
}
};
this.Research = function () {
this.gotoAndPlay("Research");
};
this.itemFade = function (thisObj) {
_parent.PlaySound("soundInfoItem");
xOffset = 490 - (thisObj._width / 2);
yOffset = 200 - (thisObj._height / 2);
wEnd = thisObj._width;
hEnd = thisObj._height;
thisObj._width = thisObj._width * mag;
thisObj._height = thisObj._height * mag;
thisObj._x = ((-(thisObj._width - wEnd)) / 2) + xOffset;
thisObj._y = ((-(thisObj._height - hEnd)) / 2) + yOffset;
wSpeed = (thisObj._width - wEnd) / 3;
hSpeed = (thisObj._height - hEnd) / 3;
this.onEnterFrame = function () {
thisObj._width = thisObj._width - wSpeed;
thisObj._height = thisObj._height - hSpeed;
thisObj._x = ((-(thisObj._width - wEnd)) / 2) + xOffset;
thisObj._y = ((-(thisObj._height - hEnd)) / 2) + yOffset;
if (thisObj._width <= wEnd) {
thisObj._width = wEnd;
thisObj._height = hEnd;
thisObj._x = xOffset;
thisObj._y = yOffset;
delete this.onEnterFrame;
}
};
this.dtInfoTxt.text = thisObj.sInfoMessage;
};
Symbol 256 MovieClip [mcInfoArea] Frame 2
this.mcItemBuff.removeMovieClip();
this.mcInfoResearch.removeMovieClip();
_parent.PlaySound("soundInfoOpen");
this.FadeIn = function () {
};
Symbol 256 MovieClip [mcInfoArea] Frame 14
this.attachMovie(sInfoIcon, "mcItemBuff", 1);
this.FadeIn = function (sBuff) {
if (this.sInfoIcon == sBuff) {
if (this.mcInfoResearch.enabled == undefined) {
}
} else {
this.sInfoIcon = sBuff;
this.gotoAndPlay("FadeIn");
}
};
Symbol 256 MovieClip [mcInfoArea] Frame 19
this.stop();
txtBuff = "";
Symbol 256 MovieClip [mcInfoArea] Frame 20
buff = this.dtInfoTxt.text;
Symbol 256 MovieClip [mcInfoArea] Frame 31
this.stop();
this.dtInfoTxt.text = txtBuff;
Symbol 256 MovieClip [mcInfoArea] Frame 32
this.mcItemBuff.removeMovieClip();
this.mcInfoResearch.removeMovieClip();
this.FadeOut = function () {
};
Symbol 256 MovieClip [mcInfoArea] Frame 38
if (_parent.mcGetArea.mcGetBuff.enabled == undefined) {
_parent.PlaySound("soundInfoClose");
}
Symbol 256 MovieClip [mcInfoArea] Frame 49
this.sInfoIcon = "";
Symbol 258 MovieClip [mcCinemaScope] Frame 1
var speed = 20;
this._alpha = 0;
this.onEnterFrame = function () {
this._alpha = this._alpha + this.speed;
if (this._alpha >= 100) {
this._alpha = 100;
delete this.onEnterFrame;
}
};
this.FadeOut = function () {
this._alpha = 100;
this.onEnterFrame = function () {
this._alpha = this._alpha - this.speed;
if (this._alpha <= 0) {
this._alpha = 0;
this.removeMovieClip();
}
};
};
Symbol 260 MovieClip Frame 1
this._alpha = 0;
Symbol 261 MovieClip [mcCloseArea] Frame 1
var sMassage = ["\u5C0F\u7D50\u304C\u3053\u3093\u306A\u306B\uFF01\n\u3053\u308C\u306F\u4E88\u60F3\u4EE5\u4E0A\u3060\u2026\u3002", "\uFF08\u30B8\u30E3\u30FC\u30B8\u30E3\u30FC\uFF09", "\u3080\u3080\u3080\uFF01\u3053\u308C\u306F\u3068\u3066\u3082\u5ACC\u306A\u4E88\u611F\u2026\u3002", "\u300C\u5927\u4E08\u592B\u3060\u3063\u305F\uFF1F\u305D\u308C\u3058\u3083\u3001\u4FFA\u306F\u305D\u308D\u305D\u308D\u3002\u300D", "\u300C\u3044\u3084\u3001\u98F2\u307E\u306A\u3044\u3002\n\u51B7\u8535\u5EAB\u958B\u3051\u305F\u306E\u306F\u30AB\u30C3\u30D1\u304C\u2026\u3002\u300D", "\u300C\u3048\uFF1F\u300D", "\u300C\u77E5\u308A\u5408\u3044\u3063\u3066\u2026\u30AB\u30C3\u30D1\u3060\u305E\u3002\n\u3042\u306A\u305F\u3001\u3069\u3053\u307E\u3067\u9854\u5E83\u3044\u3093\u3060\u3088\u3002\u300D", "\u300C\u304A\u304A\uFF01\u3044\u3064\u306E\u9593\u306B\uFF01\u300D", "\u300C\u306A\u3093\u304B\u3001\u5834\u99B4\u308C\u3057\u3066\u308B\u3057\u2026\u3002\u300D", "\u300C\u3044\u3084\u3001\u98F2\u307E\u306A\u3044\u3002\n\u305D\u3093\u306A\u5C0F\u7D50\u6301\u3063\u3066\u3053\u3089\u308C\u3066\u3082\u3002\u4FFA\u306F\u5E30\u3063\u3066\u5BDD\u2026\u300D", "\u2026\u3002", "\u2026\u2026\u3002", "\u300C\u3042\u2026\u3044\u3048\u3001\u9802\u304D\u307E\u3059\u2026\u3002\u300D"];
_parent.mcMessageArea.FadeInMessage(this.sMassage[0], 1);
var i = 1;
this.onPress = function () {
if (this.sMassage.length > i) {
_parent.mcMessageArea.FadeInMessage(this.sMassage[this.i], 1);
this.i++;
} else {
_parent._parent.moveScene(4);
}
if (2 == this.i) {
_parent.PlaySound("soundClose");
}
if (8 == this.i) {
_parent.mcMainArea.ZoomOut();
_parent.mcMainArea.mcMainCappa.play();
_parent.mcMainArea.mcMainCappaShose.play();
_parent.mcMainArea.mcMainCappaBag.play();
_parent.mcMainArea.mcMainCappaBody.play();
_parent.mcMainArea.mcMainTowel.play();
_parent.mcMainArea.mcMainUpDown.play();
}
if (12 == this.i) {
_parent.mcMainArea.mcMainCappa.play();
}
if (13 == this.i) {
_parent.mcMainArea.mcMainCappa.play();
}
};
this.stop();
Symbol 262 MovieClip Frame 1
this._alpha = 0;
Symbol 264 MovieClip [mcOpenArea] Frame 1
_parent.mcHeaderArea.MoveOut();
_parent.mcFooterArea.MoveOut();
Symbol 264 MovieClip [mcOpenArea] Frame 13
this.stop();
_parent.PlaySound("soundStart", 1);
var sMassage = ["\u5C02\u52D9\u306E\u304A\u3070\u3055\u3093\u3068\u5C45\u9152\u5C4B\u3067\u98F2\u3093\u3060\u306F\u3044\u3044\u304C\u2026", "\u3044\u304F\u3089\u7981\u9152\u306E\u89E3\u7981\u65E5\u3060\u304B\u3089\u3063\u3066\u98F2\u307F\u3059\u304E\u3060\u308D\u3046\uFF01\n\u4E00\u4EBA\u3067\u5E30\u308C\u306A\u304F\u306A\u308B\u307E\u3067\u8E0A\u308A\u72C2\u3046\u306A\u3088\u3002", "\u8FD1\u6240\u3060\u304B\u3089\u3063\u3066\u7406\u7531\u3067\u5BB6\u307E\u3067\u9001\u308B\u306F\u3081\u306B\u306A\u308B\u3068\u306F\u2026\u3002\n\u307F\u3093\u306A\u3001\u51B7\u305F\u3044\u306A\u3041\u3002", "\u307E\u3041\u3044\u3044\u3084\u3001\u5C02\u52D9\u304C\u30B2\u30ED\u30EA\u30F3\u3057\u3066\u308B\u3046\u3061\u306B\u5E30\u308D\u3046\u3002", "\u3053\u306E\u307E\u307E\u3060\u3068\u3001\u3069\u3053\u307E\u3067\u4ED8\u304D\u5408\u308F\u3055\u308C\u308B\u304B\u308F\u304B\u3089\u306A\u3044\u304B\u3089\u306A\u3002\n\u3069\uFF5E\u308C\u3001\u7384\u95A2\u3001\u7384\u95A2\u3002"];
_parent.mcMessageArea.FadeInMessage(this.sMassage[0], 1);
var i = 1;
this.onPress = function () {
if (this.sMassage.length > i) {
_parent.mcMessageArea.FadeInMessage(this.sMassage[this.i], 1);
this.i++;
} else {
_parent.mcMessageArea.FadeOutMessage();
this.removeMovieClip();
}
};
Symbol 265 MovieClip [mcGetBG] Frame 1
this._alpha = 25;
this.onPress = function () {
_parent.RollOut();
this.onEnterFrame = function () {
if (this._alpha >= 0) {
this._alpha = this._alpha - 4;
} else {
this._alpha = 0;
delete eval (this.onEnterFrame());
}
};
};
Symbol 267 MovieClip Frame 1
if (_root.bDebug) {
xs = this._xscale;
ys = this._yscale;
this._xscale = 100;
this._yscale = 100;
this.attachMovie("mcDebugZone", "mcDebugZone", 1);
this.mcDebugZone._width = this._width;
this.mcDebugZone._height = this._height;
this._xscale = xs;
this._yscale = ys;
}
Symbol 276 MovieClip [mcMessageArea] Frame 1
this.onRollOver = function () {
this.FadeOutMessage();
};
this.FadeInMessage = function (sMsg, flg) {
delete _parent.mcMainArea.onMouseMove;
delete this.onEnterFrame;
this.attachMovie("mcMessageText", "mcMessageText", 1);
if (flg == 1) {
this.mcMessageText.mcMessageTextBtn._visible = true;
} else {
this.mcMessageText.mcMessageTextBtn._visible = false;
}
this.mcMessageText._x = 0;
this.mcMessageText._y = Stage.height - this._height;
this.mcMessageText.dtMessageText.text = sMsg;
};
this.FadeOutMessage = function () {
this.mcMessageText.dtMessageText.text = "";
if (this.mcMessageText.enabled != undefined) {
this.onEnterFrame = function () {
this.mcMessageText._alpha = this.mcMessageText._alpha - 15;
if (this.mcMessageText._alpha <= 0) {
this.mcMessageText.removeMovieClip();
delete this.onEnterFrame;
}
};
}
};
Symbol 277 MovieClip [mcDragArea] Frame 1
this.attachObj = function (sObj) {
if (this.mcItemBuff.enabled == undefined) {
this.attachMovie(sObj, "mcItemBuff", 1);
}
};
this.startObjDrag = function (thisObj) {
thisObj._x = this._xmouse - (thisObj._width / 2);
thisObj._y = this._ymouse - (thisObj._height / 2);
thisObj.startDrag();
_parent.mcHeaderArea.MoveOut();
_parent.mcFooterArea.MoveOut();
_parent.mcInfoArea.FadeOut();
thisObj._alpha = 50;
};
this.endObjDrag = function (thisObj) {
thisObj.stopDrag();
xStart = thisObj._x;
yStart = thisObj._y;
xEnd = thisObj.xEnd;
yEnd = 480;
this.onEnterFrame = function () {
thisObj._x = thisObj._x + ((xEnd - thisObj._x) * 0.2);
thisObj._y = thisObj._y + ((yEnd - thisObj._y) * 0.2);
thisObj._alpha = (Math.abs(yEnd - thisObj._y) / Math.sqrt(((xEnd - xStart) * (xEnd - xStart)) + ((yEnd - yStart) * (yEnd - yStart)))) * 80;
if (thisObj._alpha < 10) {
delete this.onEnterFrame;
thisObj.removeMovieClip();
}
};
};
Symbol 278 MovieClip [mcCinemaArea] Frame 1
this.FadeIn = function () {
_parent.PlaySound("soundCinema", 1);
this.attachMovie("mcCinemaScope", "mcCinemaScope", 2);
_parent.mcMessageArea.FadeOutMessage();
};
this.FadeOut = function () {
this.mcCinemaScope.FadeOut();
};
Symbol 281 MovieClip Frame 1
var dStartP = this._y;
var dEndP = (this._y + 192);
var dSpeed = 0.15;
this.SlideOut = function () {
this.onEnterFrame = function () {
buff = (this.dEndP - this._y) * dSpeed;
this._y = this._y + buff;
this._alpha = ((this.dEndP - this._y) / (this.dEndP - this.dStartP)) * 100;
if (Math.abs(this.dEndP - this._y) < 0.4) {
this._y = this.dEndP;
this._alpha = 0;
delete this.onEnterFrame;
}
};
};
Symbol 284 MovieClip Frame 1
var dStartP = this._y;
var dEndP = (this._y - 192);
var dSpeed = 0.15;
this.SlideOut = function (scene) {
this.onEnterFrame = function () {
buff = (this._y - this.dEndP) * dSpeed;
this._y = this._y - buff;
this._alpha = ((this._y - this.dEndP) / (this.dStartP - this.dEndP)) * 100;
if ((this._y - this.dEndP) < 0.4) {
this._y = this.dEndP;
this._alpha = 0;
_parent._parent._parent.moveScene(_parent._parent.scene);
delete this.onEnterFrame;
}
};
};
Symbol 288 MovieClip Frame 1
this._width = 0;
var dSpeed = 1.5;
this.ScaleUp = function () {
this._width = 5;
this.onEnterFrame = function () {
this._width = this._width * dSpeed;
if (this._width >= _parent._width) {
_parent.play();
delete this.onEnterFrame;
}
};
};
Symbol 292 MovieClip Frame 1
this.stop();
Symbol 292 MovieClip Frame 7
this.mcStartingMask.ScaleUp();
this.stop();
Symbol 292 MovieClip Frame 30
this.mcStartingTop.SlideOut();
this.mcStartingBottom.SlideOut();
this.stop();
Symbol 331 MovieClip Frame 1
this.stop();
this.onPress = function () {
this.play();
};
Symbol 331 MovieClip Frame 24
_parent._parent.scene = 3;
_parent._parent.play();
Symbol 333 MovieClip Frame 1
this.stop();
this.onPress = function () {
this.play();
};
Symbol 333 MovieClip Frame 24
_parent._parent.scene = 2;
_parent._parent.play();
Symbol 334 MovieClip Frame 60
this.stop();
Symbol 335 MovieClip [mcStarting] Frame 1
this.stop();
var scene;
Symbol 335 MovieClip [mcStarting] Frame 14
this.stop();
this.mcStartingBG.play();
Symbol 353 MovieClip [mcEnding] Frame 1
this.attachMovie("mcMessageArea", "mcMessageArea", 1);
Symbol 353 MovieClip [mcEnding] Frame 330
this.stop();
var sMassage = ["\uFF08\u5F8C\u65E5\uFF09", "\u300C\u2026\u3068\u3001\u3044\u3046\u3053\u3068\u304C\u3042\u3063\u3066\u306D\u3047\u3002\u300D", "\u79D8\u66F8\u300C\u305D\u308C\u306F\u5927\u5909\u3067\u3057\u305F\u306D\u3002\n\u5C02\u52D9\u306F\u98F2\u307F\u59CB\u3081\u308B\u3068\u6B62\u307E\u308A\u307E\u305B\u3093\u304B\u3089\u3002\u300D", "\u300C\u307E\u3055\u304B\u3001\u30AB\u30C3\u30D1\u3068\u4E00\u7DD2\u306B\u98F2\u3080\u3053\u3068\u306B\u306A\u308B\u3068\u306F\u601D\u308F\u306A\u304B\u3063\u305F\u3088\u3002\n\u5C02\u52D9\u306E\u4EBA\u8108\u306F\u3059\u3054\u3044\u306A\u3041\u3002\u300D", "\u79D8\u66F8\u300C\u9854\u5E83\u3044\u3067\u3059\u3088\u306D\u3002\n\u3044\u308D\u3044\u308D\u3068\u52A9\u304B\u3063\u3066\u308B\u90E8\u5206\u3082\u3042\u308A\u307E\u3059\u3088\u3002\u300D", "\u300C\u3046\u30FC\u3093\u3001\u826F\u3044\u3093\u3060\u304B\u60AA\u3044\u3093\u3060\u304B\u2026\u3002\n\u3057\u304B\u3057\u3001\u30BF\u30A4\u30DF\u30F3\u30B0\u60AA\u304F\u906D\u9047\u3057\u3061\u307E\u3063\u305F\u306A\u3041\u3002\u300D", "\u79D8\u66F8\u300C\u3067\u3082\u3001\u30AB\u30C3\u30D1\u3067\u3088\u304B\u3063\u305F\u3058\u3083\u306A\u3044\u3067\u3059\u304B\u3002\n\u3053\u308C\u304B\u3089\u3001\u3069\u3046\u306A\u308B\u304B\u308F\u304B\u308A\u307E\u305B\u3093\u304C\u2026\u3002\u300D", "\u300C\u2026\uFF01\uFF1F\u300D", "\u79D8\u66F8\u300C\u3042\u306E\u4EBA\u306B\u72D9\u308F\u308C\u305F\u3089\u3001\u30AB\u30C3\u30D1\u3069\u3053\u308D\u306E\u8A71\u3058\u3083\u306A\u3044\u3088\u3002\u300D"];
this.mcMessageArea.FadeInMessage(this.sMassage[0], 1);
var i = 1;
this.onPress = function () {
if (this.sMassage.length > i) {
this.mcMessageArea.FadeInMessage(this.sMassage[this.i], 1);
this.i++;
} else {
this.mcMessageArea.removeMovieClip();
this.play();
}
};
Symbol 353 MovieClip [mcEnding] Frame 331
delete this.onPress;
this.stop();
Symbol 361 MovieClip Frame 1
function xShuffleArray(l_array) {
var _local1 = l_array.length;
while (_local1--) {
var _local3 = Math.floor(Math.random() * (_local1 + 1));
var _local4 = l_array[_local1];
l_array[_local1] = l_array[_local3];
l_array[_local3] = _local4;
}
}
this.stop();
var dObj = 480;
var speed = 120;
var delay = 10;
var l_array = new Array();
i = 0;
while (i < dObj) {
l_array[i] = i;
i++;
}
this.xShuffleArray(l_array);
i = 0;
while (i < dObj) {
buff = l_array[i];
this.attachMovie("mcMaskObj", "mcMaskObj" + buff, buff);
this["mcMaskObj" + buff]._x = (-(buff + 1)) * delay;
this["mcMaskObj" + buff]._y = i * (480 / dObj);
this["mcMaskObj" + buff]._width = 640;
this["mcMaskObj" + buff]._height = 480 / dObj;
this["mcMaskObj" + buff].onEnterFrame = function () {
if (this._x < 0) {
if ((this._x + speed) < 0) {
this._x = this._x + speed;
} else {
this._x = 0;
}
} else {
delete this.onEnterFrame;
}
};
i++;
}
this.onEnterFrame = function () {
flg = 0;
i = 0;
while (i < dObj) {
buff = l_array[i];
if (this["mcMaskObj" + buff]._x < 0) {
flg = 1;
}
i++;
}
if (flg == 0) {
_parent.play();
}
};
Symbol 432 MovieClip [mcTutorial] Frame 1
this.PlaySound = function (sName, roop) {
obj = new Sound();
obj.attachSound(sName);
obj.start(0, roop);
};
this.StopSound = function () {
this.obj.stop();
};
this.LockClick = function () {
this.onPress = function () {
};
this.onRelease = function () {
};
this.onMouseDown = function () {
};
this.onMouseUp = function () {
};
};
this.UnLockClick = function () {
delete this.onPress;
delete this.onRelease;
delete this.onMouseDown;
delete this.onMouseUp;
};
Symbol 432 MovieClip [mcTutorial] Frame 43
this.PlaySound("soundGetOut");
Symbol 432 MovieClip [mcTutorial] Frame 73
this.PlaySound("soundUpFade");
this.stop();
this.onPress = function () {
this.play();
};
Symbol 432 MovieClip [mcTutorial] Frame 98
this.PlaySound("soundTutorial", 999);
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 103
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 108
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 112
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 147
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 148
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 299
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 305
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 318
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 324
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 325
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 398
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 399
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 524
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 525
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 604
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 608
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 613
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 625
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 626
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 758
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 759
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 836
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 837
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 931
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 936
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 947
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 951
this.stop();
Symbol 432 MovieClip [mcTutorial] Frame 968
this.StopSound();
this.stop();
_parent.moveScene(1);
Symbol 434 MovieClip [mcStage] Frame 1
this.attachMovie("mcMainArea", "mcMainArea", 1);
this.attachMovie("mcInfoArea", "mcInfoArea", 2);
this.attachMovie("mcGetArea", "mcGetArea", 3);
this.attachMovie("mcHeaderHitArea", "mcHeaderHitArea", 4);
this.attachMovie("mcHeaderArea", "mcHeaderArea", 5);
this.attachMovie("mcFooterHitArea", "mcFooterHitArea", 6);
this.attachMovie("mcFooterArea", "mcFooterArea", 7);
this.attachMovie("mcDragArea", "mcDragArea", 8);
this.attachMovie("mcDialArea", "mcDialArea", 9);
this.attachMovie("mcMessageArea", "mcMessageArea", 10);
this.attachMovie("mcOpenArea", "mcOpenArea", 100);
this.CloseArea = function () {
this.attachMovie("mcCloseArea", "mcCloseArea", 100);
};
this.attachMovie("mcCinemaArea", "mcCinemaArea", 101);
this.PlaySound = function (sName, roop) {
obj1 = new Sound();
obj1.attachSound(sName);
obj1.start(0, roop);
};
this.StopSound = function (sName) {
obj1.stop(sName);
};
this.LockClick = function () {
this.onPress = function () {
};
this.onRelease = function () {
};
this.onMouseDown = function () {
};
this.onMouseUp = function () {
};
this.onMouseMove = function () {
};
};
this.UnLockClick = function () {
delete this.onPress;
delete this.onRelease;
delete this.onMouseDown;
delete this.onMouseUp;
delete this.onMouseMove;
};
Symbol 450 MovieClip Frame 1
this.stop();
var storyFlg = false;
this._name = "mcMainMainDoor";
this.onPress = function () {
_parent._parent.mcMainArea.ZoomIn(this, 2);
};
Symbol 450 MovieClip Frame 13
_parent._parent.PlaySound("soundMainCommon2");
Symbol 450 MovieClip Frame 55
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u30D5\u30A1\u30F3\u30AD\u30FC\u306A\u30AB\u30C3\u30D1\u304C\u3044\u308B\u2026\u3053\u308C\u3058\u3083\u5E30\u308C\u306A\u3044\u3058\u3083\u306A\u3044\u304B\u3002\n\u3053\u3044\u3064\u3082\u8179\u6E1B\u3063\u3066\u308B\u306E\u304B\uFF1F";
this.storyFlg = true;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 450 MovieClip Frame 67
_parent._parent.PlaySound("soundMainCommon2");
Symbol 450 MovieClip Frame 155
this.stop();
_parent._parent.mcGetArea.RollIn(this, "mcGetLastKey");
_parent.ZoomOut();
var sItemMessage = "\u51B7\u8535\u5EAB\u3042\u3051\u305F\u3089\u5E30\u3063\u3066\u304F\u308C\u3093\u306E\u304B\u306A\u3041\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
Symbol 460 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetHera");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 461 MovieClip Frame 1
this.stop();
this._name = "mcMainDial2";
this.GAnime = function () {
_parent._parent.mcMainArea.ZoomIn(this, 2);
};
Symbol 461 MovieClip Frame 13
_parent._parent.PlaySound("soundMainDial2", 1);
Symbol 461 MovieClip Frame 36
this.stop();
_parent.ZoomOut();
Symbol 464 MovieClip Frame 1
this.stop();
this._name = "mcMainDial1";
this.onPress = function () {
_parent._parent.mcDialArea.play();
};
Symbol 464 MovieClip Frame 2
this.stop();
delete this.onPress;
_parent._parent.PlaySound("soundMainDial1", 1);
Symbol 468 MovieClip Frame 1
var sItemMessage = "\u3088\u3057\u3001\u6238\u7DE0\u308A\u306F\u5927\u4E08\u592B\u307F\u305F\u3044\u3060\u3002\n\u3042\u3042\u3001\u65E9\u304F\u5E30\u3063\u3066\u5BDD\u305F\u3044\u2026\u3002";
var keyFlg = "mcMain7";
this.stop();
this.onPress = function () {
if (!_parent[keyFlg].storyFlg) {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
} else {
_parent._parent.mcMainArea.ZoomIn(this, 3);
}
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 468 MovieClip Frame 19
_parent._parent.PlaySound("soundMainWindow");
Symbol 468 MovieClip Frame 37
this.stop();
_parent.mcMain7.play();
var sItemMessage = "\u7A93\u306E\u5411\u3053\u3046\u306B\u56E3\u5730\u304C\u898B\u3048\u308B\u3002\u6B63\u9762\u306F515\u53F7\u5BA4\u304B\u3002\n\u3053\u306E\u6570\u5B57\u306F\u3001\u307E\u3055\u304B\u2026\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 471 MovieClip Frame 1
this._name = "mcMainBreaker";
var sItemMessage = "\u30D6\u30EC\u30FC\u30AB\u30FC\u3002\u306A\u3093\u304B\u3001\u30E6\u30EB\u30E6\u30EB\u306A\u30B9\u30A4\u30C3\u30C1\u3060\u3002\n\u983C\u308A\u306A\u3055\u305D\u3046\u306A\u3060\u306A\u3041\u2026\u3002";
this.stop();
this.onPress = function () {
if (!_parent[keyFlg].storyFlg) {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
} else {
_parent._parent.mcMainArea.ZoomIn(this, 3);
}
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 471 MovieClip Frame 2
this.stop();
var sItemMessage = "\u983C\u3080\u304B\u3089\u3082\u3046\u843D\u3061\u3066\u304F\u308C\u308B\u306A\u3088\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
_parent.ZoomOut();
Symbol 473 MovieClip Frame 1
this._visible = false;
Symbol 476 MovieClip Frame 1
this.stop();
var sItemMessage = "\u6D3E\u624B\u306A\u82B1\u3060\u3002\u540D\u524D\u306F\u308F\u304B\u3089\u306A\u3044\u3002\n\u305F\u3060\u3001\u88CF\u5EAD\u306B\u3072\u3063\u305D\u308A\u3068\u306F\u54B2\u3044\u3066\u3044\u306A\u3044\u82B1\u3060\u308D\u3046\u3002";
this.hitArea = mcMainFlower2Hit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 478 MovieClip Frame 1
this._visible = false;
Symbol 481 MovieClip Frame 1
this.stop();
var sItemMessage = "\u30EF\u30F3\u30AB\u30C3\u30D7\u5C0F\u7D50\u306B\u4E00\u8F2A\u633F\u3057\u3002\n\u5973\u3089\u3057\u3044\u3093\u3060\u304B\u3001\u7537\u3089\u3057\u3044\u3093\u3060\u304B\u2026\u3002";
this.hitArea = mcMainFlower1Hit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 483 MovieClip Frame 1
this._visible = false;
Symbol 486 MovieClip Frame 1
this.stop();
var sItemMessage = "\u6E6F\u6CB8\u304B\u3057\u5668\u3002\n\u306A\u3093\u304B\u7121\u7406\u3084\u308A\u8A2D\u7F6E\u3057\u305F\u3088\u3046\u306A\u4F5C\u308A\u3060\u306A\u3002";
this.hitArea = mcMainBoilerHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 488 MovieClip Frame 1
this._visible = false;
Symbol 491 MovieClip Frame 1
this.stop();
var sItemMessage = "\u68DA\u304C\u958B\u3044\u305F\u3002\n\u3069\u308C\u3001\u4F55\u304B\u4F7F\u3048\u308B\u306E\u3042\u308B\u304B\u306A\u3041\u3002";
this.hitArea = mcMainSpice2Hit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 493 MovieClip Frame 1
this._visible = false;
Symbol 496 MovieClip Frame 1
this.stop();
var sItemMessage = "\u3053\u306E\u8FBA\u306E\u8584\u6697\u3044\u5C0F\u7269\u306F\u5F79\u306B\u7ACB\u305F\u306A\u3044\u3060\u308D\u3046\u3002";
this.hitArea = mcMainSmallHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 499 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent.mcGetArea.RollIn(this, "mcGetKnife");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 502 MovieClip Frame 1
this.stop();
this._name = "mcMainSpice1";
var sItemMessage = "\u53F0\u6240\u7528\u54C1\u68DA\u306E\u3088\u3046\u3060\u304C\u3001\u3075\u305F\u304C\u958B\u304B\u306A\u3044\u2026\u3002\n\u4F55\u304B\u5668\u5177\u307F\u305F\u3044\u306A\u3082\u306E\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u308B\u3088\u3046\u3060\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.ComboAnime = function () {
_parent.ZoomCombo(this, 1);
};
Symbol 502 MovieClip Frame 13
_parent._parent.PlaySound("soundMainCommon2", 1);
Symbol 502 MovieClip Frame 24
this.stop();
_parent._parent.mcMainArea.mcMainLight.ComboAnime();
delete this.onPress;
Symbol 513 MovieClip Frame 1
this.stop();
this._name = "mcMainWater";
var sItemMessage = "\u6C34\u9053\u306E\u86C7\u53E3\u3002\n\u6C34\u306F\u547D\u306E\u304A\u6BCD\u3055\u3093\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 3);
};
Symbol 513 MovieClip Frame 26
_parent._parent.PlaySound("soundMainWater");
Symbol 513 MovieClip Frame 38
_parent._parent.StopSound("soundMainWater");
Symbol 513 MovieClip Frame 50
this.stop();
_parent._parent.mcGetArea.RollIn(this, "mcGetTenGallon2");
_parent.ZoomOut();
var sItemMessage = "\u6C34\u306E\u52E2\u3044\u304C\u3044\u3044\u306A\u3041\u3002\n\u8C4A\u5BCC\u3067\u5B89\u5168\u306A\u98F2\u6599\u6C34\u304C\u98F2\u3081\u308B\u65E5\u672C\u306F\u6700\u9AD8\u3060\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
Symbol 515 MovieClip Frame 1
this._visible = false;
Symbol 518 MovieClip Frame 1
this.stop();
var sItemMessage = "\u53E4\u3044\u30AC\u30B9\u30B3\u30F3\u30ED\u3002\u3057\u304B\u3057\u3001\u706B\u529B\u306F\u3042\u308A\u305D\u3046\u3060\u3002\n\u3084\u3063\u3071\u308A\u30AC\u30B9\u3060\u3088\u306A\u3002";
this.hitArea = mcMainGasHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 520 MovieClip Frame 1
this._visible = false;
Symbol 523 MovieClip Frame 1
this.stop();
var sItemMessage = "\u9AD8\u305D\u3046\u306A\u30DB\u30FC\u30ED\u30FC\u934B\u3002\n\u98DF\u5668\u306F\u3053\u3060\u308F\u3063\u3066\u308B\u306A\u3041";
this.hitArea = mcMainNabeHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 527 MovieClip Frame 1
this.stop();
this._name = "mcMainSoket";
var sItemMessage = "\u4E7E\u96FB\u6C60\u306E\u30BD\u30B1\u30C3\u30C8\u3002\n\u3069\u3046\u3082\u3001\u3053\u306E\u53F0\u6240\u306B\u5FC5\u8981\u306A\u96FB\u6E90\u306E\u3088\u3046\u3060\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 3);
};
Symbol 527 MovieClip Frame 13
_parent._parent.PlaySound("soundMainSoket", 1);
Symbol 527 MovieClip Frame 25
_parent._parent.mcMainArea.mcMainTopDoor.ComboAnime();
Symbol 527 MovieClip Frame 26
this.stop();
var sItemMessage = "\u96FB\u6E90\u4F9B\u7D66\u5B8C\u4E86\u3002\n\u3069\u3093\u306A\u4ED5\u7D44\u307F\u3060\u3088\u3001\u3053\u306E\u53F0\u6240\u2026\u3002";
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemBattery");
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 552 MovieClip Frame 1
this.stop();
this._name = "mcMain7";
var sItemMessage = "\u4E03\u8F2A\u3002\u70AD\u306F\u3059\u3067\u306B\u5165\u3063\u3066\u3044\u308B\u3088\u3046\u3060\u3002\n\u3057\u304B\u3057\u3001\u30B3\u30F3\u30ED\u306E\u4E0A\u306B\u4E03\u8F2A\u3068\u306F\u3001\u3044\u3044\u5EA6\u80F8\u3060\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function (flg) {
if (flg == "Fire") {
this.gotoAndPlay("Fire");
} else {
this.gotoAndPlay("Fish");
}
};
Symbol 552 MovieClip Frame 2
this.stop();
_parent.ZoomIn(this, 3);
Symbol 552 MovieClip Frame 44
_parent._parent.PlaySound("soundMain7");
Symbol 552 MovieClip Frame 67
_parent._parent.StopSound("soundMain7");
Symbol 552 MovieClip Frame 78
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u3055\u3066\u3001\u4F55\u3092\u713C\u3053\u3046\u304B\u3002";
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemGun2");
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
this.gotoAndPlay("Fire2Fish");
};
Symbol 552 MovieClip Frame 79
this.stop();
_parent.ZoomIn(this, 3);
Symbol 552 MovieClip Frame 102
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u3042\u3068\u306F\u706B\u3060\u306A\u3002";
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemFish");
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
this.gotoAndPlay("Fish2Fire");
};
Symbol 552 MovieClip Frame 103
this.stop();
_parent.ZoomIn(this, 3);
Symbol 552 MovieClip Frame 145
_parent._parent.PlaySound("soundMain7");
Symbol 552 MovieClip Frame 168
_parent._parent.StopSound("soundMain7");
Symbol 552 MovieClip Frame 179
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemGun2");
this.gotoAndPlay("End");
Symbol 552 MovieClip Frame 180
this.stop();
_parent.ZoomIn(this, 3);
Symbol 552 MovieClip Frame 203
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemFish");
this.gotoAndPlay("End");
Symbol 552 MovieClip Frame 204
Symbol 552 MovieClip Frame 315
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u7159\u304C\u5927\u5909\u306A\u3053\u3068\u306B\u306A\u3063\u3066\u304D\u305F\uFF01";
var storyFlg = true;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 552 MovieClip Frame 397
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u3082\u306E\u306E\u898B\u4E8B\u306B\u3084\u3089\u308C\u305F\u3002\n\u3042\u3041\u3001\u5411\u304B\u3044\u306E\u56E3\u5730\u306B\u9003\u3052\u8FBC\u3093\u3060\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 558 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetShoes");
_parent._parent.mcMainShoesBox.play();
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 560 MovieClip Frame 1
this.stop();
this._name = "mcMainTopDoor";
var sItemMessage = "\u306A\u306B\u3084\u3089\u3001\u5668\u5177\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u308B\u3002\n\u5668\u5177\u3092\u306F\u305A\u3055\u306A\u3044\u3068\u958B\u304B\u306A\u3044\u304B\u2026\u3002";
var keyFlg = "mcMainSoket";
this.onPress = function () {
if (!_parent[keyFlg].storyFlg) {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
} else {
_parent._parent.mcMainArea.ZoomIn(this, 3);
}
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.ComboAnime = function () {
_parent.ZoomCombo(this, 1);
};
Symbol 560 MovieClip Frame 13
_parent._parent.PlaySound("soundMainTopDoor", 1);
Symbol 560 MovieClip Frame 25
this.stop();
_parent._parent.mcMainArea.mcMainSpice1.ComboAnime();
this.onPress = function () {
_parent._parent.mcMainArea.ZoomIn(this, 3);
};
Symbol 560 MovieClip Frame 37
_parent._parent.PlaySound("soundMainCommon1", 1);
Symbol 560 MovieClip Frame 49
this.stop();
delete this.onPress;
delete this.onRelease;
delete this.onReleaseOutside;
_parent.ZoomOut();
Symbol 562 MovieClip Frame 1
this._visible = false;
Symbol 565 MovieClip Frame 1
this.stop();
var sItemMessage = "\u5C02\u52D9\u306E\u3042\u308A\u304C\u305F\u3044\u6559\u8A13\u304C\u66F8\u304B\u308C\u3066\u3044\u308B\u3002\n\u95A2\u4FC2\u306A\u3055\u305D\u3046\u306A\u306E\u3067\u3001\u89E6\u308C\u306A\u3044\u3067\u7F6E\u3053\u3046\u2026\u3068\u3044\u3046\u304B\u89E6\u308C\u305F\u304F\u306A\u3044\u3002";
this.hitArea = mcMainPaperHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 577 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetToolBox");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 579 MovieClip Frame 1
this.stop();
this._name = "mcMainSSS";
var sItemMessage = "\u4E2D\u306B\u4F55\u304B\u3042\u308A\u305D\u3046\u3060\u304C\u3001\u30D5\u30BF\u304C\u3057\u3066\u3042\u3063\u3066\u308F\u304B\u3089\u306A\u3044\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.ComboAnime = function () {
_parent.ZoomCombo(this, 1);
};
Symbol 579 MovieClip Frame 13
_parent._parent.PlaySound("soundMainCommon1", 1);
Symbol 579 MovieClip Frame 31
this.stop();
_parent.ZoomOut();
this._name = "mcMainSSS";
var sItemMessage = "\u8ABF\u5473\u6599\u304C\u30E9\u30D9\u30EB\u4ED8\u304D\u3067\u4E26\u3093\u3067\u3044\u308B\u3002\n\u300C\u3055\u300D\u300C\u25CB\u300D\u300C\u3059\u300D\u300C\u25CB\u300D\u300C\u305D\u300D\u3002\u3093\uFF1F\u629C\u3051\u3066\u308B\u306A\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function (flg) {
if (flg == "SSS2") {
this.gotoAndPlay("SSS2");
} else {
this.gotoAndPlay("SSS4");
}
};
Symbol 579 MovieClip Frame 32
_parent.ZoomIn(this, 3);
Symbol 579 MovieClip Frame 50
_parent._parent.PlaySound("soundMainSSS2", 1);
Symbol 579 MovieClip Frame 66
this.stop();
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemSSS2");
_parent.ZoomOut();
var sItemMessage = "\u8ABF\u5473\u6599\u304C\u30E9\u30D9\u30EB\u4ED8\u304D\u3067\u4E26\u3093\u3067\u3044\u308B\u3002\n\u300C\u3055\u300D\u300C\u3057\u300D\u300C\u3059\u300D\u300C\u25CB\u300D\u300C\u305D\u300D\u3002\u3093\uFF1F\u629C\u3051\u3066\u308B\u306A\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
this.gotoAndPlay("SSS22SSS4");
};
Symbol 579 MovieClip Frame 67
_parent.ZoomIn(this, 3);
Symbol 579 MovieClip Frame 85
_parent._parent.PlaySound("soundMainSSS2", 1);
Symbol 579 MovieClip Frame 101
this.stop();
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemSSS4");
_parent.ZoomOut();
var sItemMessage = "\u8ABF\u5473\u6599\u304C\u30E9\u30D9\u30EB\u4ED8\u304D\u3067\u4E26\u3093\u3067\u3044\u308B\u3002\n\u300C\u3055\u300D\u300C\u25CB\u300D\u300C\u3059\u300D\u300C\u305B\u300D\u300C\u305D\u300D\u3002\u3093\uFF1F\u629C\u3051\u3066\u308B\u306A\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
this.gotoAndPlay("SSS42SSS2");
};
Symbol 579 MovieClip Frame 102
_parent.ZoomIn(this, 3);
Symbol 579 MovieClip Frame 119
_parent._parent.PlaySound("soundMainSSS2", 1);
Symbol 579 MovieClip Frame 136
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemSSS4");
this.gotoAndPlay("End");
Symbol 579 MovieClip Frame 137
_parent.ZoomIn(this, 3);
Symbol 579 MovieClip Frame 155
_parent._parent.PlaySound("soundMainSSS2", 1);
Symbol 579 MovieClip Frame 171
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemSSS2");
this.gotoAndPlay("End");
Symbol 579 MovieClip Frame 172
Symbol 579 MovieClip Frame 190
_parent._parent.PlaySound("soundMainCommon1", 1);
Symbol 579 MovieClip Frame 209
_parent._parent.PlaySound("soundMainSSS3", 1);
Symbol 579 MovieClip Frame 225
this.stop();
delete this.onPress;
delete this.onRelease;
delete this.onReleaseOutside;
_parent.ZoomOut();
Symbol 582 MovieClip Frame 1
this.stop();
this._name = "mcMainLight";
var sItemMessage = "\u30AA\u30B7\u30E3\u30EC\u306A\u30AD\u30C3\u30C1\u30F3\u30E9\u30A4\u30C8\u3002\n\u3067\u3082\u3001\u3042\u3055\u3063\u3066\u306E\u65B9\u5411\u3092\u5411\u3044\u3066\u3044\u308B\u3002\u306A\u3093\u3060\u3053\u308C\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.ComboAnime = function () {
_parent.ZoomCombo(this, 1);
};
Symbol 582 MovieClip Frame 13
_parent._parent.PlaySound("soundMainCommon3");
Symbol 582 MovieClip Frame 24
this.stop();
_parent._parent.mcMainArea.mcMainSSS.ComboAnime();
var sItemMessage = "\u660E\u304B\u308A\u304C\u3064\u3044\u305F\u3002\n\u304C\u3001\u76F8\u5909\u308F\u3089\u305A\u3042\u3055\u3063\u3066\u306E\u65B9\u5411\u3092\u5411\u3044\u3066\u3044\u308B\u2026\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 582 MovieClip Frame 25
this.stop();
var sItemMessage = "\u3046\uFF5E\u3093\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 584 MovieClip Frame 1
this._visible = false;
Symbol 587 MovieClip Frame 1
this.stop();
var sItemMessage = "\u30AB\u30FC\u30C6\u30F3\u3002\n\u3046\uFF5E\u3093\u3001\u306A\u304B\u306A\u304B\u9AD8\u305D\u3046\u306A\u7D20\u6750\u3060\u3002";
this._name = "mcMainCurtain";
this.hitArea = mcMainCurtainHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 589 MovieClip Frame 1
this._visible = false;
Symbol 592 MovieClip Frame 1
this.stop();
var sItemMessage = "\u4ECA\u6D41\u884C\u306E\u30B8\u30E3\u30D1\u30CB\u30FC\u30BA\u30BD\u30F3\u30B0\u3060\u3002\n\u4F5C\u3063\u3066\u3084\u3063\u305F\u305C\u74B0\u72B6\u516B\u53F7\uFF5E\u266A\u4FFA\u3068\u304A\u524D\u306E\u604B\u306E\u8DEF\uFF5E\u266A";
this.hitArea = mcMainPosterHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 594 MovieClip Frame 1
this._visible = false;
Symbol 597 MovieClip Frame 1
this.stop();
var sItemMessage = "\u5C02\u52D9\u3055\u3093\u2026\u3002\u3082\u3046\u591C\u4E2D\u3060\u3088\u2026\u3002";
this.hitArea = mcMainClockHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 600 MovieClip Frame 1
this._name = "mcMainCappaBag";
this.stop();
Symbol 600 MovieClip Frame 2
this.stop();
Symbol 602 MovieClip Frame 1
this._visible = false;
Symbol 605 MovieClip Frame 1
this.stop();
this._name = "mcMainShoesBox";
var sItemMessage = "\u4E0B\u99C4\u7BB1\u3002\u4E00\u756A\u4E0A\u306B\u30B9\u30EA\u30C3\u30D1\u306E\u7A7A\u304D\u7BB1\u304C\u3042\u308B\u3002\n\u305D\u3046\u3044\u3048\u3070\u3001\u6C17\u306B\u5165\u3063\u305F\u30B9\u30EA\u30C3\u30D1\u3092\u8CB7\u3063\u305F\u3068\u304B\u8A00\u3063\u3066\u305F\u3051\u3069\u898B\u5F53\u305F\u3089\u306A\u3044\u306A\u3002";
this.hitArea = mcMainShoesBoxHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 605 MovieClip Frame 2
this.stop();
this.sItemMessage = "\u30B9\u30EA\u30C3\u30D1\u306F\u898B\u3064\u3051\u305F\u304C\u2026\u3042\u307E\u308A\u89E6\u308C\u306A\u3044\u3067\u304A\u3053\u3046\u3002";
Symbol 608 MovieClip Frame 1
this._name = "mcMainCappaShose";
this.stop();
Symbol 608 MovieClip Frame 2
this.stop();
Symbol 610 MovieClip Frame 1
this._visible = false;
Symbol 613 MovieClip Frame 1
this.hitArea = mcMainSideBoard2Hit;
this.useHandCursor = false;
this.onPress = function () {
};
Symbol 615 MovieClip Frame 1
this._visible = false;
Symbol 618 MovieClip Frame 1
this.hitArea = mcMainSideBoard1Hit;
this.useHandCursor = false;
this.onPress = function () {
};
Symbol 623 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetSSS2");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 633 MovieClip Frame 1
this.stop();
var sItemMessage = "\u304A\u3001\u91D1\u9B5A\u304C\u5FA9\u6D3B\u3057\u3066\u3044\u308B\u3002\u3088\u304B\u3063\u305F\u306D\u3047\u3002";
this.onPress = function () {
_parent._parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 2) || (Math.abs(_parent._ymouse - y) > 2)) {
_parent._parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
Symbol 636 MovieClip Frame 1
this.stop();
this._name = "mcMainTank";
var sItemMessage = "\u6C34\u304C\u5165\u3063\u3066\u3044\u306A\u3044\u6C34\u69FD\u3002\u4F55\u304B\u8D64\u3044\u7269\u4F53\u304C\u5E72\u4E7E\u3073\u3066\u3044\u308B\u3002\n\u304B\u308F\u3044\u305D\u3046\u306B\u2026\u306A\u3093\u3068\u304B\u3057\u3066\u3084\u308B\u304B\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 636 MovieClip Frame 26
_parent._parent.PlaySound("soundMainTank", 99);
Symbol 636 MovieClip Frame 56
_parent._parent.StopSound("soundMainTank");
Symbol 636 MovieClip Frame 68
this.stop();
_parent.ZoomOut();
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemTenGallon2");
delete this.onPress;
delete this.onRelease;
delete this.onReleaseOutside;
Symbol 644 MovieClip Frame 1
this.stop();
_parent.ZoomOut();
this._name = "mcMainTV";
var sItemMessage = "\u753B\u9762\u304C\u3064\u304B\u306A\u3044\u3002\u4ED5\u65B9\u306A\u3044\u306A\u3041\u3002\n\u805E\u3044\u305F\u3053\u3068\u306E\u3042\u308B\u4FEE\u7406\u65B9\u6CD5\u3092\u8A66\u3057\u3066\u307F\u308B\u304B\u2026\u4F55\u304B\u53E9\u304F\u3082\u306E\u3042\u308B\u304B\u306A\u3002";
var storyFlg = true;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > _parent.mouset) || (Math.abs(_parent._ymouse - y) > _parent.mouset)) {
_parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 644 MovieClip Frame 38
_parent._parent.PlaySound("soundMainTV");
Symbol 644 MovieClip Frame 55
this.stop();
_parent.ZoomOut();
var sItemMessage = "\u304A\u304A\u3001\u3064\u3044\u305F\u3064\u3044\u305F\u3002\n\u3064\u3044\u305F\u306F\u3044\u3044\u304C\u3001\u808C\u8272\u304C\u3084\u305F\u3089\u591A\u3044\u3002\u3055\u3059\u304C\u30DF\u30C3\u30C9\u30CA\u30A4\u30C8\u3002";
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemShoes");
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 10) || (Math.abs(_parent._ymouse - y) > 10)) {
_parent._parent.mcMessageArea.FadeOutMessage();
_parent.mcMainTeiden.play();
_parent.mcMainUpDown.play();
_parent.mcMainBreaker.play();
_parent.mcMainBreaker2.play();
this.play();
delete this.onMouseMove;
}
};
});
Symbol 644 MovieClip Frame 56
this.stop();
var sItemMessage = "\u826F\u304F\u898B\u308B\u3068\u3001\u53E9\u3044\u305F\u7121\u6570\u306E\u50B7\u304C\u3042\u308B\u3002\n\u65B0\u3057\u3044\u306E\u8CB7\u3048\u3088\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 646 MovieClip Frame 1
this._visible = false;
Symbol 649 MovieClip Frame 1
this.stop();
var sItemMessage = "\u82B1\u3002\n\u3082\u3057\u304B\u3057\u3066\u3001\u5C02\u52D9\u306F\u82B1\u597D\u304D\u306A\u306E\u304B\uFF1F";
this.hitArea = mcMainFlower3Hit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 654 MovieClip Frame 1
this._name = "mcMainCappaBody";
this.stop();
Symbol 654 MovieClip Frame 2
this.stop();
Symbol 656 MovieClip Frame 1
this._visible = false;
Symbol 659 MovieClip Frame 1
this.hitArea = mcMainTableHit;
this.useHandCursor = false;
this.onPress = function () {
};
Symbol 668 MovieClip Frame 1
this._name = "mcMainCappa";
this.stop();
Symbol 668 MovieClip Frame 2
this.stop();
Symbol 668 MovieClip Frame 3
this.stop();
Symbol 668 MovieClip Frame 4
this.stop();
Symbol 671 MovieClip Frame 1
this.stop();
this._name = "mcMainTowel";
var sItemMessage = "\u30AB\u30D4\u30AB\u30D4\u306B\u4E7E\u3044\u3066\u3044\u308B\u5E03\u5DFE\u3002\n\u4F7F\u3044\u7269\u306B\u306A\u3089\u306A\u3044\u306A\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 671 MovieClip Frame 2
this.stop();
Symbol 673 MovieClip Frame 1
this._visible = false;
Symbol 676 MovieClip Frame 1
this.stop();
var sItemMessage = "\u30EC\u30B7\u30D4\u96C6\u3001\u548C\u98DF\u30AA\u30F3\u30EA\u30FC\u672C\u3060\u3002226\u30DA\u30FC\u30B8\u306B\u30C9\u30C3\u30AF\u30A4\u30E4\u30FC\u3055\u308C\u3066\u3044\u308B\u3002\n\u3053\u306E\u6570\u5B57\u3001\u4F55\u304B\u610F\u5473\u304C\u3042\u308B\u306E\u304B\u306A\u2026\u3002";
this.hitArea = mcMainBookHit;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 679 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent.mcGetArea.RollIn(this, "mcGetRadio");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 682 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent.mcGetArea.RollIn(this, "mcGetPackage");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 688 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetFish");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 690 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent.mcMainArea.ZoomIn(this, 2);
};
Symbol 690 MovieClip Frame 18
_parent._parent.PlaySound("soundMainCommon1", 1);
Symbol 690 MovieClip Frame 34
this.stop();
_parent.ZoomOut();
delete this.onPress;
Symbol 693 MovieClip Frame 1
this.stop();
this._name = "mcMainIceBox";
var keyFlg = "mcMainHole";
var sItemMessage = "\u7981\u9152\u3068\u304B\u8A00\u3063\u3066\u305F\u304B\u3089\u306A\u3041\u3001\u3053\u306E\u4E2D\u306B\u306F\u304A\u9152\u304C\u305F\u3063\u3077\u308A\u306A\u306E\u3060\u308D\u3046\u3002\n\u305D\u308C\u3068\u3082\u91CD\u8981\u306A\u3082\u306E\u304C\u5165\u3063\u3066\u3044\u308B\u306E\u3060\u308D\u3046\u304B\u3002";
this.onPress = function () {
if (!_parent[keyFlg].storyFlg) {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
} else {
_parent._parent.mcMainArea.ZoomIn(this, 2);
}
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 693 MovieClip Frame 19
_parent._parent.PlaySound("soundMainCommon1");
Symbol 693 MovieClip Frame 36
this.stop();
this.onPress = function () {
};
this.onRelease = (this.onReleaseOutside = function () {
});
_parent._parent.UnLockClick();
_parent._parent.mcCinemaArea.FadeOut();
_parent._parent.CloseArea();
Symbol 697 MovieClip Frame 1
this.stop();
this._name = "mcMainHole";
var sItemMessage = "\u9811\u4E08\u306A\u9375\u3002\u305F\u3076\u3093\u3001\u7981\u9152\u7528\u3060\u308D\u3046\u3002\n\u305D\u308C\u3068\u3082\u91CD\u8981\u306A\u3082\u306E\u304C\u5165\u3063\u3066\u3044\u308B\u306E\u3060\u308D\u3046\u304B\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 2) || (Math.abs(_parent._ymouse - y) > 2)) {
_parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 699 MovieClip Frame 1
this.stop();
this._name = "mcMainHole";
var sItemMessage = "\u9811\u4E08\u306A\u9375\u3002\u305F\u3076\u3093\u3001\u7981\u9152\u7528\u3060\u308D\u3046\u3002\n\u305D\u308C\u3068\u3082\u91CD\u8981\u306A\u3082\u306E\u304C\u5165\u3063\u3066\u3044\u308B\u306E\u3060\u308D\u3046\u304B\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 2) || (Math.abs(_parent._ymouse - y) > 2)) {
_parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 704 MovieClip Frame 1
this.stop();
this._name = "mcMainHole";
var sItemMessage = "\u9811\u4E08\u306A\u9375\u3002\u305F\u3076\u3093\u3001\u7981\u9152\u7528\u3060\u308D\u3046\u3002\n\u305D\u308C\u3068\u3082\u91CD\u8981\u306A\u3082\u306E\u304C\u5165\u3063\u3066\u3044\u308B\u306E\u3060\u308D\u3046\u304B\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 2) || (Math.abs(_parent._ymouse - y) > 2)) {
_parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 705 MovieClip Frame 1
this.stop();
this._name = "mcMainHole";
var sItemMessage = "\u9811\u4E08\u306A\u9375\u3002\u305F\u3076\u3093\u3001\u7981\u9152\u7528\u3060\u308D\u3046\u3002\n\u305D\u308C\u3068\u3082\u91CD\u8981\u306A\u3082\u306E\u304C\u5165\u3063\u3066\u3044\u308B\u306E\u3060\u308D\u3046\u304B\u3002";
var storyFlg = false;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 705 MovieClip Frame 79
this.onEnterFrame = function () {
this._alpha = this._alpha - 10;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
Symbol 705 MovieClip Frame 102
this.stop();
_parent.ZoomOut();
this.storyFlg = true;
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemLastKey");
this.onPress = function () {
};
this.onRelease = (this.onReleaseOutside = function () {
});
Symbol 711 MovieClip Frame 1
this._alpha = 0;
Symbol 714 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetDish");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 716 MovieClip Frame 1
var sItemMessage = "\u4E2D\u304B\u3089\u56DE\u8EE2\u30C6\u30FC\u30D6\u30EB\u304C\u51FA\u3066\u304D\u305F\u3002\u3053\u3001\u3053\u306E\u76BF\u306F\u2026\u3002\n\u3067\u3082\u3001\u30CD\u30B8\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u3066\u53D6\u308C\u306A\u3044\u3002\u3069\u3046\u3057\u3088\u3046\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
x = _parent._xmouse;
y = _parent._ymouse;
this.onMouseMove = function () {
if ((Math.abs(_parent._xmouse - x) > 2) || (Math.abs(_parent._ymouse - y) > 2)) {
_parent._parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
});
Symbol 720 MovieClip Frame 1
this.stop();
this._name = "mcMainRange";
var sItemMessage = "\u3093\u3001\u958B\u304B\u306A\u3044\u3002\n\u30D8\u30E9\u72B6\u306E\u30E2\u30CE\u304C\u3042\u308C\u3070\u3053\u3058\u958B\u3051\u3089\u308C\u308B\u304B\u306A\u3002";
var storyFlg = false;
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 2);
};
Symbol 720 MovieClip Frame 43
_parent._parent.PlaySound("soundMainRange");
Symbol 720 MovieClip Frame 58
this.stop();
_parent.ZoomOut();
this._name = "mcMainRange";
var sItemMessage1 = "\u5999\u306A\u56DE\u8EE2\u30C6\u30FC\u30D6\u30EB\u3060\u306A\u3002\u4E00\u5FDC\u53D6\u3063\u3066\u304A\u304F\u304B\u2026\n\u3063\u3066\u601D\u3063\u305F\u304C\u3001\u30CD\u30B8\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u3066\u53D6\u308C\u306A\u3044\u2026\u3002";
var sItemMessage2 = "\u305D\u3046\u304B\u3001\u3042\u306E\u30AB\u30C3\u30D1\u3001\u3053\u306E\u76BF\u3092\u8FD4\u3057\u3066\u6B32\u3057\u3044\u306E\u304B\u3002\n\u3067\u3082\u3001\u30CD\u30B8\u3067\u56FA\u5B9A\u3055\u308C\u3066\u3044\u3066\u53D6\u308C\u306A\u3044\u2026\u3002";
var keyFlg = "mcMainMainDoor";
var storyFlg = true;
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemHera");
this.onPress = function () {
if (!_parent[keyFlg].storyFlg) {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage1);
} else {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage2);
}
_parent.mcMainMainDoor.sItemMessage = "\u76BF\u3092\u8FD4\u305B\u3070\u5E30\u3063\u3066\u304F\u308C\u308B\u304B\u306A\u3002";
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 3);
};
Symbol 720 MovieClip Frame 115
this.stop();
_parent.ZoomOut();
delete this.onPress;
delete this.onRelease;
delete this.onReleaseOutside;
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemDriver");
Symbol 736 MovieClip Frame 1
this.stop();
this._name = "mcMainTenGallon";
var sItemMessage = "\u5E3D\u5B50\u304C\u6905\u5B50\u306B\u304F\u304F\u308A\u3064\u3051\u3066\u3042\u308B\u3002\n\u3046\uFF5E\u3093\u3001\u3053\u308C\u306F\u5207\u3089\u306A\u3044\u3068\u53D6\u308C\u306A\u3044\u306A\u2026\u3002";
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
this.dropAnime = function () {
_parent.ZoomIn(this, 3);
};
Symbol 736 MovieClip Frame 16
_parent._parent.PlaySound("soundMainTenGallon", 1);
Symbol 736 MovieClip Frame 19
_parent._parent.PlaySound("soundMainTenGallon", 1);
Symbol 736 MovieClip Frame 56
this.stop();
_parent._parent.mcFooterArea.mcSlider.DelItem("mcItemKnife");
_parent.ZoomOut();
this.onPress = function () {
_parent._parent.mcGetArea.RollIn(this, "mcGetTenGallon1");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 741 MovieClip Frame 1
this.stop();
this._name = "mcMainTeiden";
Symbol 741 MovieClip Frame 2
this.stop();
var sItemMessage = "\u304A\u3063\u3068\u3001\u30C6\u30EC\u30D3\u3092\u3064\u3051\u305F\u3060\u3051\u3067\u505C\u96FB\u3068\u306F\u2026\u3002\n\u30D6\u30EC\u30FC\u30AB\u30FC\u306F\u3001\u305F\u3057\u304B\u2026\u3002";
_parent._parent.PlaySound("soundMainBreaker", 1);
this.onPress = function () {
_parent._parent.mcMessageArea.FadeInMessage(sItemMessage);
};
this.onRelease = (this.onReleaseOutside = function () {
_parent.FadeOutCount();
});
Symbol 743 MovieClip Frame 1
this.stop();
this._name = "mcMainBreaker2";
Symbol 743 MovieClip Frame 2
this.stop();
this.onPress = function () {
_parent._parent.PlaySound("soundMainBreaker", 1);
_parent.mcMainTeiden.play();
_parent.mcMainLight.play();
this.play();
};
Symbol 749 MovieClip Frame 1
this.stop();
this.onPress = function () {
_parent._parent._parent.mcGetArea.RollIn(this, "mcGetObj");
this.onEnterFrame = function () {
this._alpha = this._alpha - 20;
if (this._alpha <= 0) {
this._visible = false;
delete onEnterFrame;
}
};
};
Symbol 750 MovieClip Frame 1
this.stop();
this._name = "mcMainUpDown";
Symbol 750 MovieClip Frame 2
this.stop();
this.onPress = function () {
_parent._parent.mcMainArea.ZoomIn(this, 2);
};
Symbol 750 MovieClip Frame 79
this.stop();
_parent.ZoomOut();
delete this.onPress;
Symbol 750 MovieClip Frame 80
this.stop();
Symbol 752 MovieClip [mcMainArea] Frame 1
var mouset = 200;
var x;
var y;
var w;
var h;
var xStart = this._x;
var yStart = this._y;
var wStart = this._width;
var hStart = this._height;
var xEnd;
var yEnd;
var wEnd;
var hEnd;
var reductionVal = 0.5;
var wStage = 640;
var hStage = 480;
var dLeftMax = -50;
var dRightMax = 50;
this.ZoomIn = function (mcObj, mag) {
myPoint = {x:0, y:0};
mcObj.localToGlobal(myPoint);
dx = myPoint.x;
dy = myPoint.y;
dw = mcObj._width;
dh = mcObj._height;
this.x = this._x;
this.y = this._y;
this.w = this._width;
this.h = this._height;
this.xEnd = ((this.wStage - (dw * mag)) / 2) - (dx * mag);
this.yEnd = ((this.hStage - (dh * mag)) / 2) - (dy * mag);
this.wEnd = this.wStart * mag;
this.hEnd = this.hStart * mag;
if (this.xEnd > (0 + dRightMax)) {
this.xEnd = 0 + dRightMax;
}
if (this.xEnd < (((this.wStage - this.wEnd) + ((this.wStart - this.wStage) * mag)) + dLeftMax)) {
this.xEnd = ((this.wStage - this.wEnd) + ((this.wStart - this.wStage) * mag)) + dLeftMax;
}
if (this.yEnd > 0) {
this.yEnd = 0;
}
if (this.yEnd < ((this.hStage - this.hEnd) + ((this.hStart - this.hStage) * mag))) {
this.yEnd = (this.hStage - this.hEnd) + ((this.hStart - this.hStage) * mag);
}
_parent.LockClick();
_parent.mcCinemaArea.FadeIn();
this.onEnterFrame = function () {
this.x = this.x + ((this.xEnd - this.x) * reductionVal);
this.y = this.y + ((this.yEnd - this.y) * reductionVal);
this.w = this.w + ((this.wEnd - this.w) * reductionVal);
this.h = this.h + ((this.hEnd - this.h) * reductionVal);
this._x = this.x;
this._y = this.y;
this._width = this.w;
this._height = this.h;
if (Math.abs(this.wEnd - this.w) < 0.4) {
this._width = this.wEnd;
}
if (Math.abs(this.hEnd - this.h) < 0.4) {
this._height = this.hEnd;
}
if (Math.abs(this.xEnd - this.x) < 0.4) {
this._x = this.xEnd;
}
if (Math.abs(this.yEnd - this.y) < 0.4) {
this._y = this.yEnd;
}
if ((((Math.abs(this.wEnd - this.w) < 0.4) && (Math.abs(this.hEnd - this.h) < 0.4)) && (Math.abs(this.xEnd - this.x) < 0.4)) && (Math.abs(this.yEnd - this.y) < 0.4)) {
mcObj.play();
delete this.onEnterFrame;
}
};
};
this.ZoomOut = function () {
_parent.mcCinemaArea.FadeOut();
this.xEnd = xStart;
this.yEnd = yStart;
this.wEnd = wStart;
this.hEnd = hStart;
this.onEnterFrame = function () {
this.x = this.x + ((this.xStart - this.x) * reductionVal);
this.y = this.y + ((this.yStart - this.y) * reductionVal);
this.w = this.w + ((this.wStart - this.w) * reductionVal);
this.h = this.h + ((this.hStart - this.h) * reductionVal);
this._x = this.x;
this._y = this.y;
this._width = this.w;
this._height = this.h;
if (Math.abs(this.wStart - this.w) < 0.4) {
this._width = this.wStart;
}
if (Math.abs(this.hStart - this.h) < 0.4) {
this._height = this.hStart;
}
if (Math.abs(this.xStart - this.x) < 0.4) {
this._x = this.xStart;
}
if (Math.abs(this.yStart - this.y) < 0.4) {
this._y = this.yStart;
}
if ((((Math.abs(this.wStart - this.w) < 0.4) && (Math.abs(this.hStart - this.h) < 0.4)) && (Math.abs(this.xStart - this.x) < 0.4)) && (Math.abs(this.yStart - this.y) < 0.4)) {
_parent.UnLockClick();
delete this.onEnterFrame;
}
};
};
this.ZoomCombo = function (mcObj, mag) {
myPoint = {x:0, y:0};
mcObj.localToGlobal(myPoint);
dx = myPoint.x;
dy = myPoint.y;
dw = mcObj._width;
dh = mcObj._height;
this.x = this._x;
this.y = this._y;
this.w = this._width;
this.h = this._height;
this.xEnd = ((this.xStart * 3) - ((dx * mag) - this._x)) + ((this.wStage - ((dw * mag) * 3)) / 2);
this.yEnd = ((this.yStart * 3) - (((dy * mag) - this._y) - (this.yStart * 3))) + ((this.hStage - ((dh * mag) * 3)) / 2);
this.wEnd = (this.wStart * 3) * mag;
this.hEnd = (this.hStart * 3) * mag;
if (this.xEnd > (0 + dRightMax)) {
this.xEnd = 0 + dRightMax;
}
if (this.xEnd < (((this.wStage - this.wEnd) + ((this.wStart - this.wStage) * mag)) + dLeftMax)) {
this.xEnd = ((this.wStage - this.wEnd) + ((this.wStart - this.wStage) * mag)) + dLeftMax;
}
if (this.yEnd > 0) {
this.yEnd = 0;
}
if (this.yEnd < ((this.hStage - this.hEnd) + ((this.hStart - this.hStage) * mag))) {
this.yEnd = (this.hStage - this.hEnd) + ((this.hStart - this.hStage) * mag);
}
this.onEnterFrame = function () {
this.x = this.x + ((this.xEnd - this.x) * reductionVal);
this.y = this.y + ((this.yEnd - this.y) * reductionVal);
this.w = this.w + ((this.wEnd - this.w) * reductionVal);
this.h = this.h + ((this.hEnd - this.h) * reductionVal);
this._x = this.x;
this._y = this.y;
this._width = this.w;
this._height = this.h;
if (Math.abs(this.wEnd - this.w) < 0.4) {
this._width = this.wEnd;
}
if (Math.abs(this.hEnd - this.h) < 0.4) {
this._height = this.hEnd;
}
if (Math.abs(this.xEnd - this.x) < 0.4) {
this._x = this.xEnd;
}
if (Math.abs(this.yEnd - this.y) < 0.4) {
this._y = this.yEnd;
}
if ((((Math.abs(this.wEnd - this.w) < 0.4) && (Math.abs(this.hEnd - this.h) < 0.4)) && (Math.abs(this.xEnd - this.x) < 0.4)) && (Math.abs(this.yEnd - this.y) < 0.4)) {
mcObj.play();
delete this.onEnterFrame;
}
};
};
var countX = 0;
var countY = 0;
var buffX = 0;
var buffY = 0;
this.FadeOutCount = function () {
countX = 0;
countY = 0;
buffX = this._xmouse;
buffY = this._ymouse;
this.onMouseMove = function () {
countX = countX + Math.abs(this._xmouse - buffX);
countY = countY + Math.abs(this._ymouse - buffY);
buffX = this._xmouse;
buffY = this._ymouse;
if ((countX + countY) > mouset) {
_parent.mcMessageArea.FadeOutMessage();
delete this.onMouseMove;
}
};
};
Symbol 755 MovieClip [mcGetFront] Frame 1
this.onEnterFrame = function () {
this._rotation = this._rotation + 1;
};
Symbol 757 MovieClip [mcGetItem] Frame 1
this.orgX = this._x;
this.orgY = this._y;
this.orgW = this._width;
this.orgH = this._height;
k = 0.6;
a = 0.5;
dMax = 25;
cnt = 0;
this._width = this._width / 10;
this._height = this._height / 10;
xp = 0;
yp = 0;
this.onEnterFrame = function () {
var _local3 = this.orgW - this._width;
var _local2 = this.orgH - this._height;
this.xp = (this.xp * a) + (_local3 * k);
this.yp = (this.yp * a) + (_local2 * k);
this._width = this._width + this.xp;
this._height = this._height + this.yp;
this.cnt++;
if (this.cnt > this.dMax) {
this._x = this.orgX;
this._y = this.orgY;
this._width = this.orgW;
this._height = this.orgH;
delete this.onEnterFrame;
}
};
Symbol 762 MovieClip [mcInfoResearch] Frame 1
_parent._parent.PlaySound("soundInfoResearch");
this._x = 393;
this._y = 108;
aaa.onEnterFrame = function () {
this._x = this._x + 16;
this._y = this._y + 16;
};
bbb.onEnterFrame = function () {
this._x = this._x - 16;
this._y = this._y + 16;
};
ccc.onEnterFrame = function () {
this._x = this._x - 16;
this._y = this._y - 16;
};
ddd.onEnterFrame = function () {
this._x = this._x + 16;
this._y = this._y - 16;
};
Symbol 764 MovieClip Frame 1
this.onPress = function () {
};
Symbol 799 MovieClip Frame 1
this.stop();
this._name = "mcFrame23";
var flg = 0;
Symbol 799 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 799 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 1
this.stop();
this._name = "mcFrame22";
var flg = 0;
Symbol 810 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 810 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 1
this.stop();
this._name = "mcFrame21";
var flg = 0;
Symbol 821 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 821 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 1
this.stop();
this._name = "mcFrame13";
var flg = 0;
Symbol 832 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 832 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 1
this.stop();
this._name = "mcFrame12";
var flg = 0;
Symbol 843 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 843 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 1
this.stop();
this._name = "mcFrame11";
var flg = 0;
Symbol 854 MovieClip Frame 9
this.stop();
flg = 1;
dFlg = 0;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 15
this.stop();
flg = 1;
dFlg = 1;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 21
this.stop();
flg = 1;
dFlg = 2;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 27
this.stop();
flg = 1;
dFlg = 3;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 33
this.stop();
flg = 1;
dFlg = 4;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 39
this.stop();
flg = 1;
dFlg = 5;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 45
this.stop();
flg = 1;
dFlg = 6;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 51
this.stop();
flg = 1;
dFlg = 7;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 57
this.stop();
flg = 1;
dFlg = 8;
_parent.CheckStatus();
Symbol 854 MovieClip Frame 63
this.stop();
flg = 1;
dFlg = 9;
_parent.CheckStatus();
Symbol 859 MovieClip Frame 1
this.stop();
var TotalR = 96;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 860 MovieClip Frame 1
this.stop();
var TotalR = 121;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 861 MovieClip Frame 1
this.stop();
var TotalR = 146;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 862 MovieClip Frame 1
this.stop();
var TotalR = 171;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 863 MovieClip Frame 1
this.stop();
var TotalR = 196;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 864 MovieClip Frame 1
this.stop();
var TotalR = 221;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 865 MovieClip Frame 1
this.stop();
var TotalR = 246;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 866 MovieClip Frame 1
this.stop();
var TotalR = 271;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 867 MovieClip Frame 1
this.stop();
var TotalR = 296;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 868 MovieClip Frame 1
this.stop();
var TotalR = 320;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame23.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame21.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame21.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame22.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame22.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame23.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame23.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 871 MovieClip Frame 1
this.stop();
var Lock = 0;
Symbol 871 MovieClip Frame 2
this.stop();
Symbol 877 MovieClip Frame 1
this.stop();
var TotalR = 96;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 878 MovieClip Frame 1
this.stop();
var TotalR = 121;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 879 MovieClip Frame 1
this.stop();
var TotalR = 146;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 880 MovieClip Frame 1
this.stop();
var TotalR = 171;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 881 MovieClip Frame 1
this.stop();
var TotalR = 196;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 882 MovieClip Frame 1
this.stop();
var TotalR = 221;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 883 MovieClip Frame 1
this.stop();
var TotalR = 246;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 884 MovieClip Frame 1
this.stop();
var TotalR = 271;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 885 MovieClip Frame 1
this.stop();
var TotalR = 296;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 886 MovieClip Frame 1
this.stop();
var TotalR = 320;
var addR = 0;
var speed = 20;
var x;
var y;
this.onPress = function () {
if (_parent.Lock == 0) {
if (_parent._parent._parent.mcFrame13.flg == 0) {
addR = 0;
this.front._alpha = 50;
this.back._xscale = 300;
this.back._yscale = 300;
x = _root._xmouse;
y = _root._ymouse;
this.onMouseMove = function () {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
xBuff = Math.abs(_root._xmouse - x);
yBuff = Math.abs(_root._ymouse - y);
if (TotalR > ((addR + xBuff) + yBuff)) {
_parent._rotation = (_parent._rotation + xBuff) + yBuff;
addR = (addR + xBuff) + yBuff;
} else {
_parent._rotation = TotalR;
}
x = _root._xmouse;
y = _root._ymouse;
}
};
this.onMouseUp = function () {
if (addR > 10) {
_parent._parent._parent._parent.PlaySound("soundDial");
}
_parent.Lock = 1;
delete this.onMouseMove;
delete this.onMouseUp;
lastR = addR;
this.front._alpha = 0;
this.onEnterFrame = function () {
_parent._rotation = _parent._rotation - speed;
addR = addR - speed;
if (addR < 0) {
_parent._rotation = 0;
_parent.Lock = 0;
delete this.onEnterFrame;
this.back._xscale = 100;
this.back._yscale = 100;
_parent._parent._parent._parent.StopSound("soundDial");
if (_parent._parent._parent.mcFrame11.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame11.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent._parent._parent.StopSound("soundDial");
_parent._parent._parent.mcFrame11.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame12.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame12.gotoAndPlay("d9");
}
} else if (_parent._parent._parent.mcFrame13.flg == 0) {
if ((320 >= lastR) && (lastR >= 296)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d0");
}
if ((296 >= lastR) && (lastR >= 271)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d1");
}
if ((271 >= lastR) && (lastR >= 246)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d2");
}
if ((246 >= lastR) && (lastR >= 221)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d3");
}
if ((221 >= lastR) && (lastR >= 196)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d4");
}
if ((196 >= lastR) && (lastR >= 171)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d5");
}
if ((171 >= lastR) && (lastR >= 146)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d6");
}
if ((146 >= lastR) && (lastR >= 121)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d7");
}
if ((121 >= lastR) && (lastR >= 96)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d8");
}
if ((96 >= lastR) && (lastR >= 71)) {
_parent._parent._parent.mcFrame13.gotoAndPlay("d9");
}
}
}
};
};
}
}
};
Symbol 887 MovieClip Frame 1
this.stop();
var Lock = 0;
Symbol 887 MovieClip Frame 2
this.stop();
Symbol 893 MovieClip Frame 1
var Frame1 = 0;
var Frame2 = 0;
this.onMouseMove = function () {
if (!this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.play();
}
};
this.CheckStatus = function () {
gFlg = 0;
if (((this.mcFrame11.flg == 0) && (this.mcFrame12.flg == 0)) && (this.mcFrame13.flg == 0)) {
this.a11._alpha = 100;
this.a12._alpha = 0;
this.a13._alpha = 0;
}
if (((this.mcFrame11.flg == 1) && (this.mcFrame12.flg == 0)) && (this.mcFrame13.flg == 0)) {
this.a11._alpha = 0;
this.a12._alpha = 100;
this.a13._alpha = 0;
}
if (((this.mcFrame11.flg == 1) && (this.mcFrame12.flg == 1)) && (this.mcFrame13.flg == 0)) {
this.a11._alpha = 0;
this.a12._alpha = 0;
this.a13._alpha = 100;
}
if (((this.mcFrame11.flg == 1) && (this.mcFrame12.flg == 1)) && (this.mcFrame13.flg == 1)) {
this.a11._alpha = 0;
this.a12._alpha = 0;
this.a13._alpha = 0;
}
if (((this.mcFrame21.flg == 0) && (this.mcFrame22.flg == 0)) && (this.mcFrame23.flg == 0)) {
this.a21._alpha = 100;
this.a22._alpha = 0;
this.a23._alpha = 0;
}
if (((this.mcFrame21.flg == 1) && (this.mcFrame22.flg == 0)) && (this.mcFrame23.flg == 0)) {
this.a21._alpha = 0;
this.a22._alpha = 100;
this.a23._alpha = 0;
}
if (((this.mcFrame21.flg == 1) && (this.mcFrame22.flg == 1)) && (this.mcFrame23.flg == 0)) {
this.a21._alpha = 0;
this.a22._alpha = 0;
this.a23._alpha = 100;
}
if (((this.mcFrame21.flg == 1) && (this.mcFrame22.flg == 1)) && (this.mcFrame23.flg == 1)) {
this.a21._alpha = 0;
this.a22._alpha = 0;
this.a23._alpha = 0;
}
if (this.mcFrame13.flg == 1) {
if (Frame1 == 0) {
Frame1 = 1;
this.mcC.mcCircle.play();
}
}
if (this.mcFrame23.flg == 1) {
if (Frame2 == 0) {
Frame2 = 1;
this.mcD.mcCircle.play();
}
}
if ((this.mcFrame13.flg == 1) && (this.mcFrame23.flg == 1)) {
if (((this.mcFrame11.dFlg == 2) && (this.mcFrame12.dFlg == 2)) && (this.mcFrame13.dFlg == 6)) {
if (((this.mcFrame21.dFlg == 5) && (this.mcFrame22.dFlg == 1)) && (this.mcFrame23.dFlg == 5)) {
gFlg = 1;
}
}
if (((this.mcFrame11.dFlg == 5) && (this.mcFrame12.dFlg == 1)) && (this.mcFrame13.dFlg == 5)) {
if (((this.mcFrame21.dFlg == 2) && (this.mcFrame22.dFlg == 2)) && (this.mcFrame23.dFlg == 6)) {
gFlg = 1;
}
}
}
if (gFlg == 1) {
_parent.gotoAndPlay("G");
} else if ((((((this.mcFrame11.flg == 1) && (this.mcFrame12.flg == 1)) && (this.mcFrame13.flg == 1)) && (this.mcFrame21.flg == 1)) && (this.mcFrame22.flg == 1)) && (this.mcFrame23.flg == 1)) {
_parent.play();
}
};
Symbol 894 MovieClip [mcDialArea] Frame 1
this.stop();
this.PlaySound = function (sName, roop) {
obj2 = new Sound();
obj2.attachSound(sName);
obj2.start(0, roop);
};
this.StopSound = function (sName) {
obj2.stop(sName);
};
Symbol 894 MovieClip [mcDialArea] Frame 2
_parent.mcMessageArea.FadeInMessage("3\u6841\u306E\u6570\u5B57\u30922\u7B87\u6240\u5165\u529B\u3059\u308B\u3053\u3068\u3053\u308D\u304C\u3042\u308B\u3002\n\u5FD8\u308C\u3084\u3059\u3044\u5C02\u52D9\u306E\u3053\u3068\u3060\u3001\u3069\u3053\u304B\u306B\u6570\u5B57\u304C\u96A0\u3055\u308C\u3066\u3044\u308B\u306B\u9055\u3044\u306A\u3044\u3002");
Symbol 894 MovieClip [mcDialArea] Frame 7
this.stop();
Symbol 894 MovieClip [mcDialArea] Frame 8
_parent.mcMessageArea.FadeOutMessage();
Symbol 894 MovieClip [mcDialArea] Frame 13
this.gotoAndPlay("Start");
Symbol 894 MovieClip [mcDialArea] Frame 14
_parent.mcMessageArea.FadeOutMessage();
Symbol 894 MovieClip [mcDialArea] Frame 31
_parent.mcMainArea.mcMainDial1.play();
_parent.mcMainArea.mcMainDial2.GAnime();