Frame 1
var loaded = _root.getBytesLoaded();
var total = _root.getBytesTotal();
var parcent = Math.floor((loaded / total) * 100);
_root.LoadBar._xscale = parcent;
LoadedSize = parcent + "%";
if (loaded == total) {
_root.gotoAndPlay("Index", 1);
} else {
_root.gotoAndplay(_root._currentFrame - 1);
}
Frame 2
function onChange() {
if (_root.check_01.getValue()) {
_root.setVolume(0);
}
}
_root.stop();
if (bgSound == undefined) {
bgSound = new Sound();
bgSound.attachSound("X2_34463.mp3");
bgSound.onSoundComplete = function () {
bgSound.Start();
};
bgSound.start();
}
Frame 17
function TChara() {
var _local1 = this;
_local1.fHP = 100;
_local1._HP = function () {
return(this.fHP);
};
_local1.HP = function (val) {
var _local1 = this;
var _local2 = val;
if (_local2 >= _local1.MaxHP) {
_local1.fHP = _local1.MaxHP;
} else if (_local2 <= _local1.LowHP) {
_local1.fHP = _local1.LowHP;
GameOver();
} else {
_local1.fHP = _local2;
}
};
_local1.ChangeHP = function (val) {
this.HP(val);
};
_local1.IncHP = function () {
this.HP(this._HP() + 1);
};
_local1.DecHP = function () {
this.HP(this._HP() - 1);
};
_local1.MinusHP = function (val) {
this.HP(this._HP() - val);
};
_local1.PlusHP = function (val) {
this.HP(this._HP() + val);
};
_local1.MaxHP = 100;
_local1.LowHP = 0;
_local1._MaxHP = function () {
if (this._HP() >= this.MaxHP) {
return(true);
}
return(false);
};
_local1._LowHP = function () {
if (this._HP() <= this.LowHP) {
return(true);
}
return(false);
};
_local1.iHP = 0;
_local1.iHP_Default = function () {
this.iHP = 5;
};
_local1.iHP_Default();
_local1.HP_Mode = false;
_local1.ChangeMode = function () {
var _local1 = this;
if (_local1.HP_Mode == false) {
_local1.HP_Mode = true;
_local1.HPCount = function () {
var _local1 = this;
_local1.PlusHP(_local1.iHP);
_local1.DecEcs();
};
} else {
_local1.HP_Mode = false;
_local1.HPCount = _local1.DecHP;
}
};
_local1.HPCount = _local1.DecHP;
_local1.fCountFrame = 0;
_local1.MaxFrame = 10;
_local1.CountFrame = function () {
var _local1 = this;
if ((_local1.fCountFrame + 1) == _local1.MaxFrame) {
_local1.HPCount();
_local1.fCountFrame = 0;
} else {
_local1.fCountFrame++;
}
_local1.Flip();
};
_local1.fEcstacy = 0;
_local1._Ecstacy = function () {
return(this.fEcstacy);
};
_local1.Ecstacy = function (val) {
var _local1 = this;
if (_local1._MaxEcs()) {
_local1.MaxEcstacy();
} else if (_local1._LowEcs()) {
_local1.LowEcstacy();
_local1.fEcstacy = _local1.LowEcs;
} else {
_local1.fEcstacy = val;
}
};
_local1.ChangeEcs = function (val) {
this.Ecstacy(val);
};
_local1.IncEcs = function () {
var _local1 = this;
_local1.DecHP();
_local1.Ecstacy(_local1._Ecstacy() + 1);
};
_local1.DecEcs = function () {
this.Ecstacy(this._Ecstacy() - 1);
};
_local1.MinusEcs = function (val) {
this.Ecstacy(this._Ecstacy() - val);
};
_local1.PlusEcs = function (val) {
var _local1 = this;
_local1.MinusHP(val);
_local1.Ecstacy(_local1._Ecstacy() + val);
};
_local1.fPeakLabel = new Array("peak_00", "final_00");
_local1.CurrentPeak = 0;
_local1.MaxEcstacy = function () {
var _local1 = this;
var _local2 = _root;
_local1.Next_Disabled();
_local2.samen.Start();
_local2.gotoAndStop(_local1.fPeakLabel[_local1.CurrentPeak]);
_local1.CurrentPeak++;
_local1.MaxEcs = 100;
_local2.samen.Start = function () {
};
};
_local1.LowEcstacy = function () {
};
_local1.MaxEcs = 60;
_local1.LowEcs = 0;
_local1._MaxEcs = function () {
if (this._Ecstacy() >= this.MaxEcs) {
return(true);
}
return(false);
};
_local1._LowEcs = function () {
if (this._Ecstacy() < this.LowEcs) {
return(true);
}
return(false);
};
_local1.BonusTime = function () {
var _local1 = this;
_local1.Next_Enabled();
_local1.iHP = 3;
_local1.HP_Mode = true;
_local1.HPCount = function () {
this.PlusHP(this.iHP);
};
_root.gotoAndStop("pattern_stop");
};
_local1.h_Bar = _root.HPBar;
_local1.e_Bar = _root.EcsBar;
_local1.Flip = function () {
var _local1 = this;
_local1.e_Bar.Mask._y = _local1.e_Bar.Bar._height - (_local1._Ecstacy() * 3);
_local1.e_Bar.BarLabel = _local1._Ecstacy();
_local1.h_Bar.Mask._y = _local1.h_Bar.Bar._height - _local1._HP();
_local1.h_Bar.BarLabel = _local1._HP();
};
_local1.fLabel_array = new Array("pattern_0", "pattern_01", "pattern_02", "pattern_03", "pattern_04", "pattern_05", "pattern_06");
_local1.ChangeRate_array = new Array(70, 60, 40, 30, 20, 10, 0);
_local1.Random = function () {
return(Math.floor(Math.random() * 110));
};
_local1.Jump = function (fLabel) {
_root.gotoAndStop(fLabel);
};
_local1.Next_Enabled = function () {
var _local2 = this;
_local2.Next = function () {
var _local3 = this;
var _local2 = _local3.Random();
var _local1 = 0;
if (_local2 != _local1) {
while (_local2 < _local3.ChangeRate_array[_local1]) {
_local1++;
}
}
_local3.Jump(_local3.fLabel_array[_local1]);
};
};
_local1.Next_Disabled = function () {
this.Next = function () {
};
};
_local1.Next_Stop = function () {
this.iHP_Default();
gotoAndStop ("pattern_stop");
this.ChangeMode();
};
_local1.Voice = {Ah_Fu:new TVoice("v_001.mp3", "v_003.mp3", "v_008.mp3", "v_009.mp3"), Aha:new TVoice("v_015.mp3", "v_016.mp3"), Ha_Fu:new TVoice("v_004.mp3", "v_006.mp3", "v_007.mp3", "v_013.mp3"), Ah_Feel:new TVoice("v_009.mp3", "v_012.mp3", "v_017.mp3"), HaAh:new TVoice("v_010.mp3"), NnFu:new TVoice("v_011.mp3", "v_023.mp3"), Weak:new TVoice("v_024.mp3", "v_024_2.mp3", "v_025.mp3")};
_local1.Next_Enabled();
}
function TVoice() {
var _local1 = this;
var _local2 = arguments;
_local1.List = new Array();
_local1.CurrentSound = 0;
_local1.Max = _local2.length - 1;
_local1.Low = 0;
_local1.Random = function () {
var _local1 = this;
_ran = Math.floor((Math.random() * _local1.Max) + 1);
if (_ran > _local1.Max) {
return(_local1.Max);
}
if (_ran < _local1.Low) {
return(_local1.Low);
}
return(_ran);
};
for (num in _local2) {
_local1.List[num] = new Sound();
_local1.List[num].attachSound(_local2[num]);
}
_local1.ChangeCurrentSound = function () {
this.CurrentSound = this.Random();
};
_local1.PlaySound = function () {
var _local1 = this;
_local1.ChangeCurrentSound();
trace(_local1.CurrentSound);
_local1.List[_local1.CurrentSound].Start();
};
}
function GameOver() {
_root.gotoAndPlay("GameOver", 1);
}
this.Stop();
this.Rinda = new TChara();
_root.onEnterFrame = function () {
this.Rinda.CountFrame();
};
this.Rinda.Flip();
this.Rinda.Next();
Frame 26
_root.stop();
Instance of Symbol 175 MovieClip "finger" in Frame 26
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 31
_root.stop();
Instance of Symbol 77 MovieClip [Finger_Pattern_01] "finger" in Frame 31
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 36
_root.stop();
Instance of Symbol 198 MovieClip "finger" in Frame 36
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 41
_root.stop();
Instance of Symbol 210 MovieClip "finger" in Frame 41
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 46
_root.stop();
Instance of Symbol 217 MovieClip "finger" in Frame 46
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 51
_root.stop();
Instance of Symbol 221 MovieClip "finger" in Frame 51
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 56
_root.stop();
Instance of Symbol 227 MovieClip "finger" in Frame 56
on (press) {
_root.Rinda.Next = _root.Rinda.Next_Stop;
}
Frame 61
_root.stop();
Frame 66
_root.stop();
Instance of Symbol 239 MovieClip in Frame 66
on (press) {
_root.Rinda.iHP = 1;
_root.Rinda.HPCount = function () {
var _local1 = this;
_local1.PlusHP(_local1.iHP);
_local1.DecEcs();
};
_root.gotoAndStop("pattern_stop_2");
}
on (keyPress "<Down>") {
_root.Rinda.iHP = 1;
_root.Rinda.HPCount = function () {
var _local1 = this;
_local1.PlusHP(_local1.iHP);
_local1.DecEcs();
};
_root.gotoAndStop("pattern_stop_2");
}
Frame 71
_root.stop();
Instance of Symbol 242 MovieClip "finger" in Frame 71
on (press) {
_root.Rinda.ChangeMode();
_root.Rinda.Next_Enabled();
_root.Rinda.Next();
}
on (release) {
_root.finger.Start("Right");
}
on (dragOut) {
_root.finger.Start("Dbl");
}
on (dragOver) {
_root.finger.Start("Dbl");
}
on (keyPress "<Up>") {
_root.finger.Start("Dbl");
}
on (keyPress "<Down>") {
_root.Rinda.iHP = 5;
_root.gotoAndStop("pattern_stop");
}
on (keyPress "<Left>") {
_root.finger.Start("Left");
}
on (keyPress "<Right>") {
_root.finger.Start("Right");
}
Frame 76
_root.stop();
Frame 78
this.GameOver = function () {
};
Frame 141
_root.gotoAndStop("Index", 2);
Frame 206
_root.stop();
this.Replay_mc.onPress = function () {
_root.gotoAndStop("Index", 2);
};
Symbol 39 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 42 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "background");
Symbol 45 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 47 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 50 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 53 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "check");
Symbol 54 MovieClip [fcb_states] Frame 1
stop();
Symbol 54 MovieClip [fcb_states] Frame 2
stop();
Symbol 54 MovieClip [fcb_states] Frame 3
stop();
Symbol 54 MovieClip [fcb_states] Frame 4
stop();
Symbol 54 MovieClip [fcb_states] Frame 5
stop();
Symbol 54 MovieClip [fcb_states] Frame 6
stop();
Symbol 57 MovieClip [FLabelSymbol] Frame 1
#initclip 2
_global.FLabelClass = function () {
var _local1 = this;
if (_local1.hostComponent == undefined) {
_local1.hostComponent = ((_local1._parent.controller == undefined) ? (_local1._parent) : (_local1._parent.controller));
}
if (_local1.customTextStyle == undefined) {
if (_local1.hostComponent.textStyle == undefined) {
_local1.hostComponent.textStyle = new TextFormat();
}
_local1.textStyle = _local1.hostComponent.textStyle;
_local1.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var _local1 = this;
var _local2 = _local1.hostComponent.styleTable.embedFonts.value;
if (_local2 != undefined) {
_local1.labelField.embedFonts = _local2;
}
_local1.labelField.setNewTextFormat(_local1.textStyle);
_local1.labelField.text = label;
_local1.labelField._height = _local1.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
var _local2 = this;
var _local3 = enable;
_local2.enable = _local3;
var _local1 = _local2.hostComponent.styleTable[(_local3 ? "textColor" : "textDisabled")].value;
if (_local1 == undefined) {
_local1 = (_local3 ? 0 : 8947848);
}
_local2.setColor(_local1);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 58 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
var _local1 = this;
var _local3 = _global;
_local1.enable = true;
_local1.focused = false;
_local1.useHandCursor = false;
_local1._accImpl = new Object();
_local1._accImpl.stub = true;
_local1.styleTable = new Array();
if (_local3.globalStyleFormat == undefined) {
_local3.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_local3._focusControl = new Object();
_local3._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_local3._focusControl);
}
if (_local1._name != undefined) {
_local1._focusrect = false;
_local1.tabEnabled = true;
_local1.focusEnabled = true;
_local1.tabChildren = false;
_local1.tabFocused = true;
if (_local1.hostStyle == undefined) {
globalStyleFormat.addListener(_local1);
} else {
_local1.styleTable = _local1.hostStyle;
}
_local1.deadPreview._visible = false;
_local1.deadPreview._width = (_local1.deadPreview._height = 1);
_local1.methodTable = new Object();
_local1.keyListener = new Object();
_local1.keyListener.controller = _local1;
_local1.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
_local1.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var _local2 in _local1.styleFormat_prm) {
_local1.setStyleProperty(_local2, _local1.styleFormat_prm[_local2]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
var _local1 = this;
_local1.enable = ((arguments.length > 0) ? (enabledFlag) : true);
_local1.tabEnabled = (_local1.focusEnabled = enabledFlag);
if ((!_local1.enable) && (_local1.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
var _local1 = this;
_local1.width = w;
_local1.height = h;
_local1.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
var _local1 = this;
_local1.handlerObj = ((obj == undefined) ? (_local1._parent) : (obj));
_local1.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
var _local1 = this;
_local1.methodTable[methodName] = true;
_local1.onEnterFrame = _local1.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
var _local1 = this;
if (_local1.methodTable.setSize) {
_local1.setSize(_local1.width, _local1.height);
} else {
_local1.cleanUINotSize();
}
_local1.methodTable = new Object();
delete _local1.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
var _local1 = this;
for (var _local2 in _local1.methodTable) {
_local1[_local2]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var _local1 = this;
var _local2 = y;
var _local3 = x;
var inner = _local1.styleTable.focusRectInner.value;
var outer = _local1.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
_local1.createEmptyMovieClip("focusRect", 1000);
_local1.focusRect.controller = _local1;
_local1.focusRect.lineStyle(1, outer);
_local1.focusRect.moveTo(_local3, _local2);
_local1.focusRect.lineTo(_local3 + w, _local2);
_local1.focusRect.lineTo(_local3 + w, _local2 + h);
_local1.focusRect.lineTo(_local3, _local2 + h);
_local1.focusRect.lineTo(_local3, _local2);
_local1.focusRect.lineStyle(1, inner);
_local1.focusRect.moveTo(_local3 + 1, _local2 + 1);
_local1.focusRect.lineTo((_local3 + w) - 1, _local2 + 1);
_local1.focusRect.lineTo((_local3 + w) - 1, (_local2 + h) - 1);
_local1.focusRect.lineTo(_local3 + 1, (_local2 + h) - 1);
_local1.focusRect.lineTo(_local3 + 1, _local2 + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
var _local1 = this;
_local1.tabFocused = false;
_local1.focusRect.removeMovieClip();
Selection.setFocus(_local1);
};
FUIComponentClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1.width + 4, _local1.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
var _local1 = this;
_local1.focused = true;
Key.addListener(_local1.keyListener);
if (_local1.tabFocused) {
_local1.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
var _local1 = this;
_local1.tabFocused = true;
_local1.focused = false;
_local1.focusRect.removeMovieClip();
Key.removeListener(_local1.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
var _local1 = this;
_local1.handlerObj[_local1.changeHandler](_local1);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
var _local1 = this;
var _local2 = propName;
if (value == "") {
} else {
var tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((arguments.length > 2) ? (isGlobal) : false);
if (_local1.styleTable[_local2] == undefined) {
_local1.styleTable[_local2] = new Object();
_local1.styleTable[_local2].useGlobal = true;
}
if (_local1.styleTable[_local2].useGlobal || (!global)) {
_local1.styleTable[_local2].value = value;
if (_local1.setCustomStyleProperty(_local2, value)) {
} else if (_local2 == "embedFonts") {
_local1.invalidate("setSize");
} else if (_local2.subString(0, 4) == "text") {
if (_local1.textStyle == undefined) {
_local1.textStyle = new TextFormat();
}
var textProp = _local2.subString(4, _local2.length);
_local1.textStyle[textProp] = value;
_local1.invalidate("setSize");
} else {
for (var j in _local1.styleTable[_local2].coloredMCs) {
var _local3 = new Color(_local1.styleTable[_local2].coloredMCs[j]);
if (_local1.styleTable[_local2].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
_local3.setTransform(myTObj);
} else {
_local3.setRGB(value);
}
}
}
_local1.styleTable[_local2].useGlobal = global;
}
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
var _local1 = this;
var _local2 = propName;
if (_local1.styleTable[_local2] == undefined) {
_local1.styleTable[_local2] = new Object();
_local1.styleTable[_local2].useGlobal = true;
}
if (_local1.styleTable[_local2].coloredMCs == undefined) {
_local1.styleTable[_local2].coloredMCs = new Object();
}
_local1.styleTable[_local2].coloredMCs[skinMCRef] = skinMCRef;
if (_local1.styleTable[_local2].value != undefined) {
var _local3 = new Color(skinMCRef);
_local3.setRGB(_local1.styleTable[_local2].value);
}
};
_global.FStyleFormat = function () {
var _local1 = arguments;
var _local2 = this;
_local2.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
_local2.listeners = new Object();
_local2.isGlobal = false;
if (_local1.length > 0) {
for (var _local3 in _local1[0]) {
_local2[_local3] = _local1[0][_local3];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var _local1 = this;
var _local2 = 0;
while (_local2 < arguments.length) {
var _local3 = arguments[_local2];
_local1.listeners[arguments[_local2]] = _local3;
for (var i in _local1) {
if (_local1.isAStyle(i)) {
_local3.updateStyleProperty(_local1, i.toString());
}
}
_local2++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
var _local1 = this;
var _local2 = component;
_local1.listeners[_local2] = undefined;
for (var prop in _local1) {
if (_local1.isAStyle(prop)) {
if (_local2.styleTable[prop].useGlobal == _local1.isGlobal) {
_local2.styleTable[prop].useGlobal = true;
var _local3 = (_local1.isGlobal ? undefined : (globalStyleFormat[prop]));
_local2.setStyleProperty(prop, _local3, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var _local1 = this;
var _local2 = arguments;
var count = 0;
for (var i in _local1.listeners) {
var _local3 = _local1.listeners[i];
if (_local2.length > 0) {
var j = 0;
while (j < _local2.length) {
if (_local1.isAStyle(_local2[j])) {
_local3.updateStyleProperty(_local1, _local2[j]);
}
j++;
}
} else {
for (var j in _local1) {
if (_local1.isAStyle(j)) {
_local3.updateStyleProperty(_local1, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 61 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 61 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 64 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 3
function FCheckBoxClass() {
this.init();
}
FCheckBoxClass.prototype = new FUIComponentClass();
Object.registerClass("FCheckBoxSymbol", FCheckBoxClass);
FCheckBoxClass.prototype.init = function () {
var _local1 = this;
super.setSize(_local1._width, _local1._height);
_local1.boundingBox_mc.unloadMovie();
_local1.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1);
_local1.attachMovie("fcb_states", "fcb_states_mc", 2);
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 3);
super.init();
_local1.setChangeHandler(_local1.changeHandler);
_local1._xscale = 100;
_local1._yscale = 100;
_local1.setSize(_local1.width, _local1.height);
if (_local1.initialValue == undefined) {
_local1.setCheckState(false);
} else {
_local1.setCheckState(_local1.initialValue);
}
if (_local1.label != undefined) {
_local1.setLabel(_local1.label);
}
_local1.ROLE_SYSTEM_CHECKBUTTON = 44;
_local1.STATE_SYSTEM_CHECKED = 16;
_local1.EVENT_OBJECT_STATECHANGE = 32778;
_local1.EVENT_OBJECT_NAMECHANGE = 32780;
_local1._accImpl.master = _local1;
_local1._accImpl.stub = false;
_local1._accImpl.get_accRole = _local1.get_accRole;
_local1._accImpl.get_accName = _local1.get_accName;
_local1._accImpl.get_accState = _local1.get_accState;
_local1._accImpl.get_accDefaultAction = _local1.get_accDefaultAction;
_local1._accImpl.accDoDefaultAction = _local1.accDoDefaultAction;
};
FCheckBoxClass.prototype.setLabelPlacement = function (pos) {
var _local1 = this;
var _local3 = pos;
_local1.setLabel(_local1.getLabel());
_local1.txtFormat(_local3);
var halfLabelH = (_local1.fLabel_mc._height / 2);
var halfFrameH = (_local1.fcb_states_mc._height / 2);
var vertCenter = (halfFrameH - halfLabelH);
var checkWidth = _local1.fcb_states_mc._width;
var frame = _local1.fcb_states_mc;
var label = _local1.fLabel_mc;
var _local2 = 0;
if (frame._width > _local1.width) {
_local2 = 0;
} else {
_local2 = _local1.width - frame._width;
}
_local1.fLabel_mc.setSize(_local2);
if ((_local3 == "right") || (_local3 == undefined)) {
_local1.labelPlacement = "right";
_local1.fcb_states_mc._x = 0;
_local1.fLabel_mc._x = checkWidth;
_local1.txtFormat("left");
} else if (_local3 == "left") {
_local1.labelPlacement = "left";
_local1.fLabel_mc._x = 0;
_local1.fcb_states_mc._x = _local1.width - checkWidth;
_local1.txtFormat("right");
}
_local1.fLabel_mc._y = vertCenter;
_local1.fcb_hitArea_mc._y = vertCenter;
};
FCheckBoxClass.prototype.txtFormat = function (pos) {
var _local1 = this;
var _local2 = _local1.textStyle;
var _local3 = _local1.styleTable;
_local2.align = ((_local3.textAlign.value == undefined) ? ((_local2.align = pos)) : undefined);
_local2.leftMargin = ((_local3.textLeftMargin.value == undefined) ? ((_local2.leftMargin = 0)) : undefined);
_local2.rightMargin = ((_local3.textRightMargin.value == undefined) ? ((_local2.rightMargin = 0)) : undefined);
if (_local1.flabel_mc._height > _local1.height) {
super.setSize(_local1.width, _local1.flabel_mc._height);
} else {
super.setSize(_local1.width, _local1.height);
}
_local1.fLabel_mc.labelField.setTextFormat(_local1.textStyle);
_local1.setEnabled(_local1.enable);
};
FCheckBoxClass.prototype.setHitArea = function (w, h) {
var _local2 = this;
var _local1 = _local2.fcb_hitArea_mc;
_local2.hitArea = _local1;
if (_local2.fcb_states_mc._width > w) {
_local1._width = _local2.fcb_states_mc._width;
} else {
_local1._width = w;
}
_local1._visible = false;
if (arguments.length > 1) {
_local1._height = h;
}
};
FCheckBoxClass.prototype.setSize = function (w) {
var _local1 = this;
_local1.setLabel(_local1.getLabel());
_local1.setLabelPlacement(_local1.labelPlacement);
if (_local1.fcb_states_mc._height < _local1.flabel_mc.labelField._height) {
super.setSize(w, _local1.flabel_mc.labelField._height);
}
_local1.setHitArea(_local1.width, _local1.height);
_local1.setLabelPlacement(_local1.labelPlacement);
};
FCheckBoxClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1._width + 6, _local1._height - 1);
};
FCheckBoxClass.prototype.onPress = function () {
var _local2 = this;
_local2.pressFocus();
_root.focusRect.removeMovieClip();
var _local1 = _local2.fcb_states_mc;
if (_local2.getValue()) {
_local1.gotoAndStop("checkedPress");
} else {
_local1.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.onRelease = function () {
var _local1 = this;
_local1.fcb_states_mc.gotoAndStop("up");
_local1.setValue(!_local1.checked);
};
FCheckBoxClass.prototype.onReleaseOutside = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedEnabled");
} else {
_local1.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOut = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedEnabled");
} else {
_local1.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOver = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedPress");
} else {
_local1.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.setValue = function (checkedValue) {
var _local1 = this;
var _local2 = checkedValue;
if (_local2 || (_local2 == undefined)) {
_local1.setCheckState(_local2);
} else if (_local2 == false) {
_local1.setCheckState(_local2);
}
_local1.executeCallBack();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_STATECHANGE, true);
}
};
FCheckBoxClass.prototype.setCheckState = function (checkedValue) {
var _local1 = this;
var _local3 = checkedValue;
var _local2 = _local1.fcb_states_mc;
if (_local1.enable) {
_local1.flabel_mc.setEnabled(true);
if (_local3 || (_local3 == undefined)) {
_local2.gotoAndStop("checkedEnabled");
_local1.enabled = true;
_local1.checked = true;
} else {
_local2.gotoAndStop("up");
_local1.enabled = true;
_local1.checked = false;
}
} else {
_local1.flabel_mc.setEnabled(false);
if (_local3 || (_local3 == undefined)) {
_local2.gotoAndStop("checkedDisabled");
_local1.enabled = false;
_local1.checked = true;
} else {
_local2.gotoAndStop("uncheckedDisabled");
_local1.enabled = false;
_local1.checked = false;
_local1.focusRect.removeMovieClip();
}
}
};
FCheckBoxClass.prototype.getValue = function () {
return(this.checked);
};
FCheckBoxClass.prototype.setEnabled = function (enable) {
var _local1 = this;
if ((enable == true) || (enable == undefined)) {
_local1.enable = true;
Super.setEnabled(true);
} else {
_local1.enable = false;
Super.setEnabled(false);
}
_local1.setCheckState(_local1.checked);
};
FCheckBoxClass.prototype.getEnabled = function () {
return(this.enable);
};
FCheckBoxClass.prototype.setLabel = function (label) {
var _local1 = this;
_local1.fLabel_mc.setLabel(label);
_local1.txtFormat();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_NAMECHANGE);
}
};
FCheckBoxClass.prototype.getLabel = function () {
return(this.fLabel_mc.labelField.text);
};
FCheckBoxClass.prototype.setTextColor = function (color) {
this.fLabel_mc.labelField.textColor = color;
};
FCheckBoxClass.prototype.myOnKeyDown = function () {
var _local1 = this;
if (((Key.getCode() == 32) && (_local1.pressOnce == undefined)) && (_local1.enabled == true)) {
_local1.setValue(!_local1.getValue());
_local1.pressOnce = true;
}
};
FCheckBoxClass.prototype.myOnKeyUp = function () {
if (Key.getCode() == 32) {
this.pressOnce = undefined;
}
};
FCheckBoxClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_CHECKBUTTON);
};
FCheckBoxClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FCheckBoxClass.prototype.get_accState = function (childId) {
if (this.master.getValue()) {
return(this.master.STATE_SYSTEM_CHECKED);
}
return(0);
};
FCheckBoxClass.prototype.get_accDefaultAction = function (childId) {
if (this.master.getValue()) {
return("UnCheck");
}
return("Check");
};
FCheckBoxClass.prototype.accDoDefaultAction = function (childId) {
this.master.setValue(!this.master.getValue());
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 77 MovieClip [Finger_Pattern_01] Frame 6
_root.Rinda.DecHP();
Symbol 77 MovieClip [Finger_Pattern_01] Frame 10
_root.Rinda.Next();
Symbol 103 Button
on (release) {
gotoAndPlay ("FadeOut");
}
Symbol 110 Button
on (press) {
_root.getURL("javascript:window.close()");
}
Symbol 116 Button
on (press) {
_root.getURL("http://www.hakudaku.com/", "_self");
}
Symbol 121 MovieClip Frame 1
function TTimer() {
}
function TCaptionTimer(target_mc, useTimer, capFormat) {
var _local1 = this;
_local1.Create(target_mc, useTimer, capFormat);
_local1.onChange = function () {
this.ShowCurrentTime();
};
}
TTimer.prototype.Create = function (args) {
var _local1 = this;
var _local3 = args;
var _local2 = 0;
if (_local3[0]) {
_local1.UseHour = true;
_local1.fHour = _local3[_local2 + 4];
_local1.UsedTimer[_local2] = "this.Hour";
_local2++;
} else {
_local1.UseHour = false;
}
if (_local3[1]) {
_local1.UseMinute = true;
_local1.fMinute = _local3[_local2 + 4];
_local1.UsedTimer[_local2] = "this.Minute";
_local2++;
} else {
_local1.UseMiunute = false;
}
if (_local3[2]) {
_local1.UseSecond = true;
_local1.fSecond = _local3[_local2 + 4];
_local1.UsedTimer[_local2] = "this.Second";
_local2++;
} else {
_local1.UseSecond = false;
}
if (_local3[3]) {
_local1.UseMilliSecond = true;
_local1.fMilliSecond[_local2 + 4];
_local1.UsedTimer[_local2] = "This.MilliSecond";
} else {
_local1.UseMilliSecond = false;
}
};
TTimer.prototype.MaxHour = 23;
TTimer.prototype.MaxMinute = 59;
TTimer.prototype.MaxSecond = TTimer.prototype.MaxMinute;
TTimer.prototype.MaxMilliSecond = 999;
TTimer.prototype.Low = 0;
TTimer.prototype.TimerID = null;
TTimer.prototype.fHour = 0;
TTimer.prototype.fMinute = 0;
TTimer.prototype.fSecond = 0;
TTimer.prototype.fMilliSecond = 0;
TTimer.prototype.fuseHour = true;
TTimer.prototype.fuseMinite = true;
TTimer.prototype.fuseSecond = true;
TTimer.prototype.fuseMilliSecond = true;
TTimer.prototype.IntervalTime = 1000;
TTimer.prototype.Start = function (fName) {
var _local1 = this;
_local1.TimerID = setInterval(_local1, fName, _local1.IntervalTime);
};
TTimer.prototype.End = function () {
clearInterval(this.TimerID);
};
TTimer.prototype.Change = function (func, val) {
eval (func)(val);
this.onChange();
if ((((this.Hour == 0) && (this.Minute == 0)) && (this.Second == 0)) && (this.MilliSecond == 0)) {
this.onZeroTimer();
}
};
TTimer.prototype.ReadCurrentTimer = function () {
var _uTimer = "";
_Splitter = "";
i = 0;
while (i < this.UsedTimer.length) {
_Int = eval (this.UsedTimer[i]);
_Int = ((_Int <= 9) ? ("0" + _Int) : (_Int));
_uTimer = _uTimer + (_Splitter + _Int);
_Splitter = ":";
i++;
}
return(_uTimer);
};
TTimer.prototype.UsedTimer = new Array();
TTimer.prototype.IncHour = function () {
};
TTimer.prototype.IncMinute = function () {
};
TTimer.prototype.IncSecond = function () {
};
TTimer.prototype.IncMilliSecond = function () {
};
TTimer.prototype.DecHour = function () {
};
TTimer.prototype.DecMinute = function () {
};
TTimer.prototype.DecSecond = function () {
};
TTimer.prototype.DecMilliSecond = function () {
};
TTimer.prototype.getHour = function () {
return(this.fHour);
};
TTimer.prototype.getMinute = function () {
return(this.fMinute);
};
TTimer.prototype.getSecond = function () {
return(this.fSecond);
};
TTimer.prototype.getMilliSecond = function () {
return(this.fMilliSecond);
};
TTimer.prototype.setHour = function (val) {
var _local1 = this;
var _local2 = val;
if (_local2 > _local1.MaxHour) {
_local1.fHour = _local1.Low;
} else if (_local2 < _local1.Low) {
_local1.fHour = _local1.MaxHour;
} else {
_local1.fHour = _local2;
}
};
TTimer.prototype.setMinute = function (val) {
var _local1 = this;
var _local2 = val;
if (_local2 > _local1.MaxMinute) {
_local1.fMinute = _local1.Low;
_local1.IncHour();
} else if (_local2 < _local1.Low) {
_local1.fMinute = _local1.MaxMinute;
_local1.DecHour();
} else {
_local1.fMinute = _local2;
}
};
TTimer.prototype.setSecond = function (val) {
var _local1 = this;
var _local2 = val;
if (_local2 > _local1.MaxSecond) {
_local1.fSecond = _local1.Low;
_local1.IncMinute();
} else if (_local2 < _local1.Low) {
_local1.fSecond = _local1.MaxSecond;
_local1.DecMinute();
} else {
_local1.fSecond = _local2;
}
};
TTimer.prototype.setMilliSecond = function (val) {
var _local1 = this;
var _local2 = val;
if (_local2 > _local1.MaxMilliSecond) {
_local1.fMilliSecond = _local1.Low;
_local1.IncSecond();
} else if (_local2 < _local1.Low) {
_local1.fMilliSecond = _local1.MaxMilliSecond;
_local1.DecSecond();
} else {
_local1.fMilliSecond = _local2;
}
};
TTimer.prototype.getUseHour = function () {
return(this.fUseHour);
};
TTimer.prototype.getUseMinute = function () {
return(this.fUseMinute);
};
TTimer.prototype.getUseSecond = function () {
return(this.fUseSecond);
};
TTimer.prototype.getUseMilliSecond = function () {
return(this.fUseMilliSecond);
};
TTimer.prototype.setUseHour = function (val) {
var _local1 = this;
if (val) {
_local1.IncHour = function () {
this.Change("this.setHour", this.Hour + 1);
};
_local1.DecHour = function () {
this.Change("this.setHour", this.Hour - 1);
};
} else {
_local1.IncHour = function () {
};
_local1.DecHour = function () {
};
}
};
TTimer.prototype.setUseMinute = function (val) {
var _local1 = this;
if (val) {
_local1.IncMinute = function () {
this.Change("this.setMinute", this.Minute + 1);
};
_local1.DecMinute = function () {
this.Change("this.setMinute", this.Minute - 1);
};
} else {
_local1.IncMinute = function () {
};
_local1.DecMinute = function () {
};
}
};
TTimer.prototype.setUseSecond = function (val) {
var _local1 = this;
if (val) {
_local1.IncSecond = function () {
this.Change("this.setSecond", this.Second + 1);
};
_local1.DecSecond = function () {
this.Change("this.setSecond", this.Second - 1);
};
} else {
_local1.IncSecond = function () {
};
_local1.DecSecond = function () {
};
}
};
TTimer.prototype.setUseMilliSecond = function (val) {
var _local1 = this;
if (val) {
_local1.IncMilliSecond = function () {
this.Change("this.setMilliSecond", this.MilliSecond + 1);
};
_local1.DecMilliSecond = function () {
this.Change("this.setMilliSecond", this.MilliSecond - 1);
};
} else {
_local1.IncMilliSecond = function () {
};
_local1.DecMilliSecond = function () {
};
}
};
TTimer.prototype.addProperty("UseHour", TTimer.prototype.getUseHour, TTimer.prototype.setUseHour);
TTimer.prototype.addProperty("UseMinute", TTimer.prototype.getUseMinute, TTimer.prototype.setUseMinute);
TTimer.prototype.addProperty("UseSecond", TTimer.prototype.getUseSecond, TTimer.prototype.setUseSecond);
TTimer.prototype.addProperty("UseMilliSecond", TTimer.prototype.getUseMilliSecond, TTimer.prototype.setUseMilliSecond);
TTimer.prototype.onChange = function () {
};
TTimer.prototype.onZeroTimer = function () {
};
TTimer.prototype.addProperty("Hour", TTimer.prototype.getHour, null);
TTimer.prototype.addProperty("Minute", TTimer.prototype.getMinute, null);
TTimer.prototype.addProperty("Second", TTimer.prototype.getSecond, null);
TTimer.prototype.addProperty("MilliSecond", TTimer.prototype.getMilliSecond, null);
TCaptionTimer.prototype = new TTimer();
TCaptionTimer.prototype.Create = function (target_mc, useTimer, capFormat) {
var _local1 = this;
target_mc.createTextField("TimerCaption", 0, 0, 0, 200, 300);
_local1.fCaption = target_mc.TimerCaption;
super.Create(useTimer);
_local1.fCaption.setNewTextFormat(capFormat);
_local1.ShowCurrentTime();
};
TCaptionTimer.prototype.setCaption = function (val) {
this.fCaption.text = val;
};
TCaptionTimer.prototype.getCaption = function () {
return(this.fCaption.text);
};
TCaptionTimer.prototype.addProperty("Caption", TCaptionTimer.prototype.getCaption, TCaptionTimer.prototype.setCaption);
TCaptionTimer.prototype.ShowCurrentTime = function () {
this.Caption = this.ReadCurrentTimer();
};
cpFormat = new TextFormat("_\u660E\u671D");
cpFormat.bold = true;
cpFormat.size = 20;
cpFormat.color = 16777215 /* 0xFFFFFF */;
useTimeList = new Array(false, true, true, false, 5, 0);
jjj = new TCaptionTimer(this, useTimeList, cpFormat);
jjj.onZeroTimer = function () {
this.End();
_root.GameOver();
};
jjj.Start("DecSecond");
Symbol 127 MovieClip Frame 1
this.Stop();
Symbol 130 MovieClip Frame 1
function TBar() {
var _local1 = this;
_local1.Interval = 50;
_local1.TimerID;
_local1.Max = 100;
_local1.Low = 0;
_local1.fPurpose = 0;
_local1._Purpose = function () {
return(this.fPurpose);
};
_local1.Purpose = function (val) {
var _local1 = this;
if (val > _local1.fPurpose) {
_local1.MoveBar = _local1.IncCurrentPosition;
} else if (val < _local1.fPurpose) {
_local1.MoveBar = _local1.DecCurrentPosition;
}
_local1.TimerID = setInterval(_local1, _local1.Interval, _local1.MoveBar);
};
_local1.fCurrentPosition = 0;
_local1._CurrentPosition = function () {
return(this._CurrentPosition);
};
_local1.CurrentPosition = function (val) {
var _local1 = this;
var _local2 = val;
if (_local1.Purpose == _local2) {
_local1.ClearTimer(_local1.TimerID);
_local1.fCurrentPosition = _local2;
} else if (_local1.Purpose > _local2) {
_local1.fCurrentPosition = _local1.Purpose;
} else if (_local1.Max > _local2) {
_local1.fCurrentPosiiton = _local1.Max;
} else if (_local1.Low < _local2) {
_local1.fCurrentPosition = _local1.Low;
} else {
_local1.fCurrentPosition = _local2;
}
_local1.Flip();
};
_local1.IncCurrentPosition = function () {
this.CurrentPosition(this._CurrentPosition() + 1);
};
_local1.DecCurrentPosition = function () {
this.CurrentPosition(this._CurrentPosition() - 1);
};
_local1.StartInterval = function () {
setInterval(this, "MoveBar", 50);
};
_local1.Clear = function () {
clearInterval(this.Timer);
};
_local1.MoveBar = function () {
this.IncCurrentPosition();
};
_local1.Flip = function () {
var _local1 = this;
_local1.Mask._y = _local1.Bar._height - _local1._Purpose();
};
}
this.stop();
this.Stop();
Symbol 170 MovieClip Frame 1
function Start() {
this._visible = true;
this.gotoAndPlay("Start");
}
this.Roop = function () {
};
this._visible = false;
this.stop();
Symbol 170 MovieClip Frame 33
this.Roop();
Symbol 170 MovieClip Frame 34
this.onEnterFrame = function () {
this._alpha = this._alpha - 10;
};
Symbol 170 MovieClip Frame 39
this.onEnterFrame = function () {
};
this.Roop = function () {
this.gotoAndPlay("Roop");
};
this.Roop();
Symbol 175 MovieClip Frame 5
_root.Rinda.DecHP();
Symbol 175 MovieClip Frame 8
_root.Rinda.Next();
Symbol 198 MovieClip Frame 6
_root.Rinda.PlusEcs(2);
Symbol 198 MovieClip Frame 12
_root.Rinda.Next();
Symbol 210 MovieClip Frame 3
_root.Rinda.IncEcs();
Symbol 210 MovieClip Frame 5
_root.Rinda.IncEcs();
Symbol 210 MovieClip Frame 9
_root.Rinda.Next(2);
Symbol 217 MovieClip Frame 3
_root.Rinda.IncEcs();
Symbol 217 MovieClip Frame 5
_root.Rinda.IncEcs();
Symbol 217 MovieClip Frame 8
_root.Rinda.Next();
Symbol 221 MovieClip Frame 3
_root.Rinda.IncEcs();
Symbol 221 MovieClip Frame 6
_root.Rinda.IncEcs();
Symbol 221 MovieClip Frame 9
_root.Rinda.Next();
Symbol 227 MovieClip Frame 5
_root.Rinda.PlusEcs(2);
Symbol 227 MovieClip Frame 12
_root.Rinda.PlusEcs(2);
Symbol 227 MovieClip Frame 15
_root.Rinda.Next();
Symbol 229 MovieClip Frame 50
this.stop();
Symbol 232 MovieClip Frame 50
this.stop();
_root.Rinda.BonusTime();
Symbol 233 MovieClip Frame 1
function NextEye() {
var _local2 = this;
var _local1 = Math.floor(Math.random() * 11);
i = 0;
if (_local1 != i) {
while (_local1 < _local2.ChangeRate_array[i]) {
i++;
}
}
_local2.gotoAndPlay(fList[i]);
}
fList = ["UruUru", "Blink"];
ChangeRate_array = [2, 0];
Symbol 233 MovieClip Frame 19
this.NextEye();
Symbol 233 MovieClip Frame 29
this.NextEye();
Symbol 233 MovieClip Frame 39
this.stop();
Symbol 233 MovieClip Frame 44
this.NextEye();
Symbol 233 MovieClip Frame 54
this.stop();
Symbol 233 MovieClip Frame 59
this.NextEye();
Symbol 233 MovieClip Frame 69
this.stop();
Symbol 233 MovieClip Frame 74
this.NextEye();
Symbol 235 MovieClip Frame 1
function Roop() {
this.gotoAndPlay(18);
}
function VoiceStart() {
vNum = Math.floor(Math.random() * vAh.length);
if (vNum >= (vAh.length - 1)) {
vNum = vAh.length - 1;
}
trace(vNum);
this.vAh[vNum].start();
}
vAh = new Array();
vAh[0] = new Sound(_root.Mouth);
vAh[0].attachSound("v_026.mp3");
vAh[1] = new Sound(_root.Mouth);
vAh[1].attachSound("v_027.mp3");
vAh[2] = new Sound(_root.Mouth);
vAh[2].attachSound("v_028.mp3");
vAh[3] = new Sound(_root.Mouth);
vAh[3].attachSound("v_029.mp3");
vAh[4] = new Sound(_root.Mouth);
vAh[4].attachSound("v_031.mp3");
vAh[5] = new Sound(_root.Mouth);
vAh[5].attachSound("v_004.mp3");
vAh[6] = new Sound(_root.Mouth);
vAh[6].attachSound("v_007.mp3");
vAh[7] = new Sound(_root.Mouth);
vAh[7].attachSound("v_008.mp3");
Symbol 235 MovieClip Frame 39
this.Roop();
Symbol 235 MovieClip Frame 45
_root.Rinda.Voice.Ha_Fu.PlaySound();
Symbol 235 MovieClip Frame 49
this.stop();
Symbol 235 MovieClip Frame 54
this.gotoAndPlay(28);
Symbol 235 MovieClip Frame 60
_root.Rinda.Voice.Ah_Fu.PlaySound();
Symbol 235 MovieClip Frame 64
this.stop();
Symbol 235 MovieClip Frame 69
this.gotoAndPlay(28);
Symbol 235 MovieClip Frame 75
_root.Rinda.Voice.Ah_Feel.PlaySound();
Symbol 235 MovieClip Frame 79
this.stop();
Symbol 235 MovieClip Frame 84
this.gotoAndPlay(28);
Symbol 242 MovieClip Frame 1
function Start(_fin) {
this.Next(_fin);
this.Disable_Next();
}
this.stop();
Next = function () {
};
Enable_Next = function () {
_type = "_end";
this.Next = function (_fin) {
var _local1 = _fin;
this.gotoAndPlay(_local1 + _type);
_root.Mouth.gotoAndPlay(_local1 + _type);
_root.Eye.gotoAndPlay(_local1 + _type);
};
};
Disable_Next = function () {
this.Next = function (_fin) {
};
};
Enable_Next();
_type = "_start";
Symbol 242 MovieClip Frame 2
this.stop();
Enable_Next();
_type = "_start";
Symbol 242 MovieClip Frame 8
_root.Rinda.PlusEcs(2);
Symbol 242 MovieClip Frame 9
this.stop();
Enable_Next();
Symbol 242 MovieClip Frame 13
_root.Rinda.IncEcs();
Symbol 242 MovieClip Frame 14
this.gotoAndStop(2);
Symbol 242 MovieClip Frame 23
_root.Rinda.PlusEcs(2);
Symbol 242 MovieClip Frame 24
this.stop();
Enable_Next();
Symbol 242 MovieClip Frame 28
_root.Rinda.IncEcs();
Symbol 242 MovieClip Frame 29
this.gotoAndStop(2);
Symbol 242 MovieClip Frame 36
_root.Rinda.IncEcs();
_root.Rinda.MinusHP(3);
Symbol 242 MovieClip Frame 37
_root.Rinda.IncEcs();
_root.Rinda.DecHP();
Symbol 242 MovieClip Frame 38
_root.Rinda.DecHP();
_root.Rinda.IncEcs();
Symbol 242 MovieClip Frame 39
this.stop();
Enable_Next();
Symbol 242 MovieClip Frame 42
_root.Rinda.PlusEcs(2);
Symbol 242 MovieClip Frame 44
this.gotoAndStop(2);
Symbol 243 MovieClip Frame 26
this.Roop();
Symbol 243 MovieClip Frame 100
this.Roop = function () {
this.gotoAndPlay(1);
};
Symbol 247 MovieClip Frame 95
this.stop();
_root.gotoAndPlay("Final_After");
Symbol 254 MovieClip Frame 53
_root.nextFrame();
Symbol 254 MovieClip Frame 59
this.stop();
Symbol 277 MovieClip Frame 40
this.stop();
_root.nextFrame();