Combined Code
frame 1 {
stop();
owner_URL = 'http://gamesofdesire.com/';
onEnterFrame = function () {
if (_currentframe != 1) {
return undefined;
}
p1 = int(100 * getBytesLoaded() / getBytesTotal());
p2 = int(1000 * getBytesLoaded() / getBytesTotal()) - 10 * p1;
percent_shadow = 'Loading: ' + p1 + '%';
percent = percent_shadow;
bar.SetValue(getBytesLoaded() / getBytesTotal());
if (getBytesLoaded() == getBytesTotal()) {
gotoAndStop(3);
}
};
moregames.onPress = function () {
getURL('http://gamesofdesire.com/', '_blank');
};
}
movieClip 4 {
}
// unknown tag 88 length 153
movieClip 10 {
}
movieClip 12 {
}
movieClip 14 {
frame 1 {
function SetValue(_value) {
hider._x = _value * volumer._width - hider._width;
}
SetValue(0);
}
}
movieClip 2501 __Packages.AnimManager {
#initclip
if (!_global.AnimManager) {
var v1 = function (anim_mc_, btns_mc_) {
this.anim_mc = anim_mc_;
this.btns_mc = btns_mc_;
this.gravi = new Gravitation(1);
this.gravi.move_draw = 0.5;
this.acts = new Array();
this.anim_swings = new Array();
};
_global.AnimManager = v1;
var v2 = v1.prototype;
v2.AddAct = function (AnimActObject) {
var new_act = new AnimAct(AnimActObject);
this.acts.push(new_act);
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress = function () {
var v3 = this._parent.anim_manager;
if (v3 == undefined) {
v3 = this._parent._parent.anim_manager;
}
var v2 = 0;
while (v2 < v3.acts.length) {
if (this._name == v3.acts[v2].btn_name) {
this._parent.btn_id = v2;
break;
}
++v2;
}
this._parent.border._x = this._x;
this._parent.border._y = this._y;
v3.setAct(this._name);
this.postOnPress();
};
if (this.acts.length == 1) {
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress();
}
};
v2.AddSwing = function (AnimSwingObject) {
this.anim_swings.push(new AnimSwing(AnimSwingObject));
};
v2.setAct = function (btn_name) {
if (btn_name == this.act.btn_name) {
return undefined;
}
var btn_name_found = false;
var i = 0;
while (i < this.acts.length) {
if (this.acts[i].btn_name == btn_name) {
this.act = this.acts[i];
btn_name_found = true;
break;
}
++i;
}
if (!btn_name_found) {
return undefined;
}
(eval(String(this.anim_mc._parent) + '.hint')).removeMovieClip();
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.gravi.control_mode = 0;
this.CreateHint(640, 480, this.anim_mc._parent, this.act.mouse_movement, this.act.pixel_start, this.act.pixel_width);
} else {
this.gravi.control_mode = 1;
}
if (this.act.frame_enter != undefined) {
this.frame = this.act.frame_enter;
}
this.gravi.auto_speed = this.act.auto_speed;
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
this.gravi.auto_fade_out_speed = this.act.auto_fade_out_speed;
this.state = 0;
this.timer = 0;
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.state = 0;
}
}
this.Update(this.anim_mc._parent._xmouse, this.anim_mc._parent._ymouse);
this.act.setFaceByStr(this.anim_mc, this.act.face_settings);
};
v2.Update = function (_xmouse, _ymouse) {
if (this.act == undefined) {
return undefined;
}
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
if (this.act.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
this.gravi.move_goto = (_ymouse - this.act.pixel_start) / this.act.pixel_width;
} else {
this.gravi.move_goto = (_xmouse - this.act.pixel_start) / this.act.pixel_width;
}
if (this.gravi.move_goto < 0) {
this.gravi.move_goto = 0;
} else {
if (this.gravi.move_goto > 1) {
this.gravi.move_goto = 1;
}
}
if (this.act.reverse_mouse_control) {
this.gravi.move_goto = 1 - this.gravi.move_goto;
}
}
this.UpdateSwings(true, this.gravi.swing_draw[0]);
this.gravi.Update();
if (this.act.type == AnimAct.TYPE_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
if (this.state == 0) {
this.state = 1;
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
}
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_PENDULUM || this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
} else {
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
if (this.state == 0) {
++this.timer;
if (this.timer >= 50) {
this.state = 1;
this.gravi.control_mode = 2;
}
} else {
if (this.state == 1) {
if (this.gravi.auto_move_fade_k < 0.5) {
this.act.playCum(this.anim_mc);
this.state = 2;
}
} else {
if (this.state == 2) {
if (this.gravi.control_mode == 1) {
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
this.state = 3;
}
}
}
}
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
}
}
}
}
this.anim_mc.gotoAndStop(int(this.frame));
this.UpdateSwings(false, this.gravi.swing_draw[0]);
};
v2.UpdateSwings = function (update_before, gravi_swing_draw) {
var i = 0;
while (i < this.anim_swings.length) {
if (this.anim_swings[i].update_before_gravi == update_before) {
var clip = eval(String(this.anim_mc) + '.' + this.anim_swings[i].clip_name);
var last_frame = this.anim_swings[i].last_frame;
var first_frame = this.anim_swings[i].first_frame;
if (this.anim_swings[i].reverse) {
clip.gotoAndStop(int((1 - gravi_swing_draw) * (last_frame - first_frame) + first_frame));
} else {
clip.gotoAndStop(int(gravi_swing_draw * (last_frame - first_frame) + first_frame));
}
}
++i;
}
};
v2.CreateHint = function (swf_width, swf_height, owner_mc, mouse_movement, pixel_start, pixel_width) {
var hint_mc = owner_mc.createEmptyMovieClip('hint', owner_mc.getNextHighestDepth());
this.DrawArrow(swf_width, swf_height, hint_mc, mouse_movement, pixel_start, pixel_width);
var mouse_icon_mc = hint_mc.createEmptyMovieClip('mouse_icon', hint_mc.getNextHighestDepth());
this.DrawMouseIcon(mouse_icon_mc);
mouse_icon_mc._visible = false;
hint_mc.anim = 0;
hint_mc.mouse_movement = mouse_movement;
hint_mc.pixel_start = pixel_start;
hint_mc.pixel_width = pixel_width;
hint_mc.swf_width = swf_width;
hint_mc.swf_height = swf_height;
hint_mc.onEnterFrame = function () {
if (!mouse_icon_mc._visible) {
mouse_icon_mc._visible = true;
}
hint_mc.anim += 0.05;
if (hint_mc.anim >= 1) {
hint_mc.anim -= 1;
}
if (hint_mc.mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
hint_mc.mouse_icon._y = hint_mc.swf_height / 2 - 70;
} else {
if (hint_mc.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.swf_width / 2 + 70;
hint_mc.mouse_icon._y = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
}
}
hint_mc._alpha -= 1;
if (hint_mc._alpha <= 0) {
hint_mc.removeMovieClip();
}
};
};
v2.DrawArrow = function (swf_width, swf_height, mc, mouse_movement, pixel_start, pixel_width) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 25;
if (mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
var v4 = pixel_start;
var v3 = swf_height / 2;
mc.moveTo(v4, v3);
mc.lineTo(v4 + 1.5 * v1, v3 - v1);
mc.lineTo(v4 + 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - v1);
mc.lineTo(v4 + pixel_width, v3);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + v1);
mc.lineTo(v4, v3);
} else {
if (mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
var v4 = swf_width / 2;
var v3 = pixel_start;
mc.moveTo(v4, v3);
mc.lineTo(v4 + v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 + v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4, v3 + pixel_width);
mc.lineTo(v4 - v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 - v1, v3 + 1.5 * v1);
mc.lineTo(v4, v3);
}
}
};
v2.DrawMouseIcon = function (mc) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 40;
mc.moveTo(-v1 / 2, 0);
mc.curveTo(-v1 / 2, -v1 / 1.5, 0, -v1 / 1.5);
mc.curveTo(v1 / 2, -v1 / 1.5, v1 / 2, 0);
mc.curveTo(v1 / 3, 0.75 * v1, 0, 0.75 * v1);
mc.curveTo(-v1 / 3, 0.75 * v1, -v1 / 2, 0);
mc.endFill();
mc.moveTo(-v1 / 2, 0);
mc.lineTo(v1 / 2, 0);
mc.moveTo(0, 0);
mc.lineTo(0, -v1 / 1.5);
};
ASSetPropFlags(_global.AnimManager.prototype, null, 1);
}
#endinitclip
}
movieClip 2502 __Packages.Gravitation {
#initclip
if (!_global.Gravitation) {
var v1 = function (swings_num) {
this.move_speeds = new Array();
this.swing_draw = new Array();
this.swing_speed = new Array();
this.swing_fadeout = new Array();
this.auto_move_fade_k = 1;
var v2;
this.move_draw = 0.5;
this.prev_move_draw = 0.5;
this.prev_prev_move_draw = 0.5;
v2 = 0;
while (v2 < 24) {
this.move_speeds.push(0);
++v2;
}
v2 = 0;
while (v2 < swings_num) {
this.swing_draw.push(0.5);
this.swing_speed.push(0);
this.swing_fadeout.push(0.1);
++v2;
}
this.move_delay = 3;
this.move_speed_overal = 0;
this.auto_anim_angle = 0;
this.control_mode = 0;
this.auto_fade_out_speed = 0.005;
this.face_frame = 1;
this.auto_speed = 0.2;
this.anchor = undefined;
};
_global.Gravitation = v1;
var v2 = v1.prototype;
v2.Update = function () {
var v5;
var v3;
var v4 = _root.time_scale;
if (v4 == undefined) {
v4 = 1;
}
if (this.control_mode > 0) {
if (this.control_mode == 2) {
this.auto_move_fade_k -= this.auto_fade_out_speed;
if (this.auto_move_fade_k < 0.15) {
this.control_mode = 1;
this.auto_move_fade_k = 0.15;
}
}
this.auto_anim_angle += this.auto_move_fade_k * Math.PI * this.auto_speed * v4;
if (this.auto_anim_angle >= 6.283185307179586) {
this.auto_anim_angle -= 6.283185307179586;
}
this.move_goto = (this.auto_move_fade_k * Math.sin(this.auto_anim_angle) + 1) / 2;
}
this.actual_delay = this.move_delay - this.move_speed_overal * 10;
if (this.actual_delay < 1.5) {
this.actual_delay = 1.5;
}
this.move_speed = v4 * (this.move_goto - this.move_draw) / this.actual_delay;
v5 = 1 / this.actual_delay;
this.prev_prev_move_draw = this.prev_move_draw;
this.prev_move_draw = this.move_draw;
this.move_draw += this.move_speed;
if (this.move_draw > 1) {
this.move_draw = 1;
} else {
if (this.move_draw < 0) {
this.move_draw = 0;
}
}
this.anchor = undefined;
if (this.move_draw < this.prev_move_draw && this.prev_move_draw >= this.prev_prev_move_draw) {
this.anchor = 1;
} else {
if (this.move_draw > this.prev_move_draw && this.prev_move_draw <= this.prev_prev_move_draw) {
this.anchor = -1;
}
}
this.move_speeds.push(Math.abs(this.move_speed));
this.move_speeds.splice(0, 1);
this.move_speed_overal = 0;
v3 = 0;
while (v3 < this.move_speeds.length) {
this.move_speed_overal += this.move_speeds[v3];
++v3;
}
this.move_speed_overal /= this.move_speeds.length;
this.swing_goto = (this.move_speed + v5) / 2 * v5;
v3 = 0;
while (v3 < this.swing_draw.length) {
if (Math.abs(this.swing_goto - this.swing_draw[v3]) > 0.001666666666666667 || Math.abs(this.swing_speed[v3]) > 0.001666666666666667) {
this.swing_speed[v3] += (this.swing_goto - this.swing_draw[v3]) / 10 + 1.5 * this.move_speed_overal * (this.swing_goto - this.swing_draw[v3]);
this.swing_draw[v3] += this.swing_speed[v3];
this.swing_draw[v3] += (this.swing_goto - this.swing_draw[v3]) * this.swing_fadeout[v3];
if (this.swing_draw[v3] < 0) {
this.swing_draw[v3] = 0;
} else {
if (this.swing_draw[v3] > 1) {
this.swing_draw[v3] = 1;
}
}
} else {
this.swing_draw[v3] = 0.5;
}
++v3;
}
if (this.move_speed_overal > 0.14 && this.face_frame < 3) {
this.face_frame = 3;
}
if (this.move_speed_overal > 0.07000000000000001 && this.face_frame < 2) {
this.face_frame = 2;
}
if (this.move_speed_overal < 0.05 && this.face_frame > 1) {
this.face_frame = 1;
}
if (this.move_speed_overal < 0.1 && this.face_frame > 2) {
this.face_frame = 2;
}
};
ASSetPropFlags(_global.Gravitation.prototype, null, 1);
}
#endinitclip
}
movieClip 2503 __Packages.AnimAct {
#initclip
if (!_global.AnimAct) {
var v1 = function (AnimActObject) {
this.btn_name = AnimActObject.btn_name;
this.type = AnimActObject.type;
this.frame_start = AnimActObject.frame_start;
this.frame_end = AnimActObject.frame_end;
this.frame_enter = AnimActObject.frame_enter;
if (this.frame_enter == undefined) {
this.frame_enter = this.frame_start;
}
this.auto_speed = AnimActObject.auto_speed;
this.auto_fade_out_speed = AnimActObject.auto_fade_out_speed;
this.face_settings = this.TossJunkChars(AnimActObject.face_settings);
this.cum_clips = this.TossJunkChars(AnimActObject.cum_clips);
this.face_settings_after_cum = this.TossJunkChars(AnimActObject.face_settings_after_cum);
this.mouse_movement = AnimActObject.mouse_movement;
this.pixel_start = AnimActObject.pixel_start;
this.pixel_width = AnimActObject.pixel_width;
this.reverse_mouse_control = Boolean(AnimActObject.reverse_mouse_control);
};
_global.AnimAct = v1;
var v2 = v1.prototype;
v2.TossJunkChars = function (str) {
var v1 = 0;
while (v1 < str.length) {
if (str.charAt(v1) == '\t' || str.charAt(v1) == '\r' || str.charAt(v1) == '\n' || str.charAt(v1) == ' ') {
str = str.substr(0, v1) + str.substr(v1 + 1, str.length);
--v1;
}
++v1;
}
return str;
};
v2.setFaceByStr = function (anim_mc, data_str) {
if (data_str == '') {
return undefined;
}
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
var n = data_item.indexOf('=');
var path = data_item.substr(0, n);
var frame = Number(data_item.substr(n + 1, data_item.length));
(eval(String(anim_mc) + '.' + path)).gotoAndStop(frame);
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v2.playCum = function (anim_mc) {
var data_str = this.cum_clips;
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
(eval(String(anim_mc) + '.' + data_item)).play();
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v1.TYPE_PENDULUM = 0;
v1.TYPE_LINEAR = 1;
v1.TYPE_CUM_PENDULUM = 2;
v1.TYPE_CUM_LINEAR = 3;
v1.TYPE_PENDULUM_MANUAL = 4;
v1.TYPE_STOP = 5;
v1.VERTICAL_MOVEMENT = 0;
v1.HORIZONTAL_MOVEMENT = 1;
ASSetPropFlags(_global.AnimAct.prototype, null, 1);
}
#endinitclip
}
movieClip 2504 __Packages.AnimSwing {
#initclip
if (!_global.AnimSwing) {
var v1 = function (AnimSwingObject) {
this.clip_name = AnimSwingObject.clip_name;
this.first_frame = Number(AnimSwingObject.first_frame);
this.last_frame = Number(AnimSwingObject.last_frame);
this.reverse = Boolean(AnimSwingObject.reverse);
if (AnimSwingObject.update_before_gravi == undefined) {
this.update_before_gravi = false;
} else {
this.update_before_gravi = Boolean(AnimSwingObject.update_before_gravi);
}
};
_global.AnimSwing = v1;
var v2 = v1.prototype;
ASSetPropFlags(_global.AnimSwing.prototype, null, 1);
}
#endinitclip
}
// unknown tag 88 length 143
movieClip 21 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
_parent.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 24 {
}
movieClip 28 {
}
movieClip 32 {
}
movieClip 34 {
}
movieClip 36 {
}
movieClip 38 {
}
movieClip 40 {
}
movieClip 42 {
}
movieClip 44 {
}
movieClip 46 {
}
movieClip 48 {
}
movieClip 50 {
}
movieClip 52 {
}
movieClip 54 {
}
movieClip 56 {
}
movieClip 58 {
}
movieClip 60 {
}
movieClip 62 {
}
movieClip 64 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(3) + 1));
};
}
frame 40 {
randomHold();
}
frame 74 {
randomHold();
}
frame 131 {
randomHold();
}
}
movieClip 71 {
}
movieClip 72 {
}
movieClip 77 {
}
movieClip 81 {
}
movieClip 102 {
}
movieClip 120 {
}
movieClip 121 {
}
movieClip 122 {
frame 1 {
stop();
}
frame 40 {
stop();
}
}
movieClip 123 {
}
movieClip 124 {
}
movieClip 132 {
}
movieClip 134 {
}
movieClip 138 {
}
movieClip 140 {
frame 1 {
stop();
if (_root.global_sound == undefined) {
_root.global_sound = new Sound();
_root.global_sound.setVolume(100);
}
if (_root.global_sound.getVolume() == 30) {
gotoAndStop(2);
} else {
if (_root.global_sound.getVolume() == 0) {
gotoAndStop(1);
}
}
spot.onPress = function () {
_title.gotoAndPlay(1);
if (_currentframe == 1) {
_root.global_sound.setVolume(30);
gotoAndStop(2);
} else {
if (_currentframe == 2) {
_root.global_sound.setVolume(0);
gotoAndStop(3);
} else {
_root.global_sound.setVolume(100);
gotoAndStop(1);
}
}
};
}
}
movieClip 142 mainmenu {
frame 1 {
ship.ship.gg1.girl._visible = false;
}
frame 1 {
stop();
play_btn.onPress = function () {
_root.gotoScreen('screen1');
};
moregames.onPress = function () {
getURL('http://gamesofdesire.com/', '_blank');
};
}
}
// unknown tag 88 length 138
movieClip 147 screen1 {
frame 200 {
ship.ship.mast.gotoAndPlay(2);
}
frame 246 {
stop();
_root.gotoScreen('screen2');
}
}
movieClip 156 {
}
movieClip 209 {
frame 107 {
gotoAndPlay(25);
}
}
movieClip 213 {
}
movieClip 217 {
}
movieClip 221 {
}
movieClip 222 {
frame 1 {
stop();
act.gotoAndPlay(_parent._parent._parent.valueFramePiching);
}
}
movieClip 224 {
}
movieClip 226 {
}
movieClip 228 {
}
movieClip 230 {
}
movieClip 232 {
}
movieClip 234 {
}
movieClip 236 {
}
movieClip 238 {
}
movieClip 240 {
}
movieClip 242 {
}
movieClip 271 {
}
movieClip 277 {
}
movieClip 278 {
frame 1 {
stop();
act.gotoAndPlay(_parent._parent._parent.valueFramePiching);
}
}
movieClip 280 {
}
movieClip 282 {
}
movieClip 288 {
}
movieClip 289 {
frame 1 {
stop();
act.gotoAndPlay(_parent._parent._parent.valueFramePiching);
}
}
movieClip 291 {
}
movieClip 293 {
}
movieClip 308 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 35 {
randomHold();
}
frame 69 {
randomHold();
}
}
movieClip 311 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 100 {
randomHold();
}
frame 200 {
randomHold();
}
}
movieClip 316 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(4) + 1));
};
}
frame 60 {
randomHold();
}
frame 118 {
randomHold();
}
frame 165 {
randomHold();
}
frame 188 {
randomHold();
}
}
movieClip 318 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 121 {
randomHold();
}
}
movieClip 320 {
}
movieClip 324 {
}
movieClip 328 {
}
movieClip 332 {
}
movieClip 353 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 25 {
randomHold();
}
frame 49 {
randomHold();
}
}
movieClip 378 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 19 {
randomHold();
}
frame 39 {
randomHold();
}
}
movieClip 380 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 121 {
randomHold();
}
}
movieClip 390 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 35 {
randomHold();
}
frame 69 {
randomHold();
}
}
movieClip 392 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 121 {
randomHold();
}
}
movieClip 393 {
frame 1 {
stop();
}
}
movieClip 395 {
}
movieClip 397 {
}
movieClip 399 {
}
movieClip 401 {
}
movieClip 403 {
}
movieClip 406 {
}
movieClip 408 {
}
movieClip 410 {
}
movieClip 412 {
}
movieClip 414 {
}
movieClip 416 {
}
movieClip 418 {
}
movieClip 420 {
}
movieClip 422 {
}
movieClip 424 {
}
movieClip 426 {
}
movieClip 428 {
}
movieClip 432 {
}
movieClip 434 {
}
movieClip 436 {
}
movieClip 438 {
}
movieClip 440 {
}
movieClip 442 {
}
movieClip 444 {
}
movieClip 446 {
}
movieClip 449 {
}
movieClip 451 {
}
movieClip 453 {
}
movieClip 455 {
}
movieClip 457 {
}
movieClip 459 {
}
movieClip 461 {
}
movieClip 463 {
}
movieClip 465 {
}
movieClip 467 {
}
movieClip 469 {
}
movieClip 471 {
}
movieClip 473 {
}
movieClip 475 {
}
movieClip 477 {
}
movieClip 479 {
}
movieClip 483 {
}
movieClip 485 {
}
movieClip 487 {
}
movieClip 488 {
frame 1 {
stop();
}
}
movieClip 492 {
}
movieClip 493 {
}
movieClip 495 {
}
movieClip 496 {
}
movieClip 497 {
}
movieClip 499 {
}
movieClip 501 {
}
movieClip 503 {
}
movieClip 505 {
}
movieClip 507 {
}
movieClip 509 {
}
movieClip 510 {
}
movieClip 512 {
}
movieClip 516 {
}
movieClip 518 {
}
movieClip 519 {
}
movieClip 520 {
}
movieClip 522 {
}
movieClip 524 {
}
movieClip 526 {
}
movieClip 528 {
}
movieClip 531 {
}
movieClip 533 {
}
movieClip 535 {
}
movieClip 536 {
}
movieClip 538 {
}
movieClip 540 {
}
movieClip 542 {
}
movieClip 544 {
}
movieClip 546 {
}
movieClip 548 {
}
movieClip 550 {
}
movieClip 552 {
}
movieClip 554 {
}
movieClip 556 {
}
movieClip 558 {
}
movieClip 560 {
}
movieClip 585 {
}
movieClip 586 {
frame 1 {
stop();
onEnterFrame = null;
if (_parent._parent._parent.area2 == true) {
_parent.area2._visible = true;
_parent.area1._visible = false;
_parent.hand11._visible = true;
_parent.hand12._visible = true;
_parent.hand13._visible = true;
_parent.hand31._visible = false;
_parent.hand32._visible = false;
_parent.hand33._visible = false;
_parent.hand34._visible = false;
_parent.hand35._visible = false;
_parent.ripples1._visible = true;
_parent.ripples2._visible = true;
} else {
_parent.area2._visible = false;
_parent.area1._visible = true;
_parent.hand11._visible = false;
_parent.hand12._visible = false;
_parent.hand13._visible = false;
_parent.hand31._visible = true;
_parent.hand32._visible = true;
_parent.hand33._visible = true;
_parent.hand34._visible = true;
_parent.hand35._visible = true;
}
_parent.ripples7._visible = false;
_parent.ripples8._visible = false;
_parent.hand21._visible = true;
_parent.hand22._visible = true;
_parent.hand23._visible = true;
_parent.head._visible = true;
_parent.ripples5._visible = true;
_parent.ripples6._visible = true;
_parent.ripples3._visible = true;
_parent.ripples4._visible = true;
_parent.area2._visible = true;
_parent.horizontal._visible = true;
_parent.vertical._visible = true;
_parent.hair1._visible = true;
_parent.hair2._visible = true;
_parent.part11._visible = true;
_parent.part10._visible = true;
}
frame 2 {
onEnterFrame = function () {
if (_parent._parent._parent.mood.x > 210 && _parent._parent._parent.bubble1 == true) {
_parent._parent._parent.mood.x -= 0.5;
}
};
_parent.ripples7._visible = true;
_parent.ripples8._visible = true;
_parent.hand21._visible = false;
_parent.hand22._visible = false;
_parent.hand23._visible = false;
_parent.hand11._visible = false;
_parent.hand12._visible = false;
_parent.hand13._visible = false;
_parent.head._visible = false;
_parent.ripples5._visible = false;
_parent.ripples6._visible = false;
_parent.ripples1._visible = false;
_parent.ripples2._visible = false;
_parent.ripples3._visible = false;
_parent.ripples4._visible = false;
_parent.area2._visible = false;
_parent.area1._visible = false;
_parent.horizontal._visible = false;
_parent.vertical._visible = false;
_parent.hair1._visible = false;
_parent.hair2._visible = false;
_parent.hand31._visible = false;
_parent.hand32._visible = false;
_parent.hand33._visible = false;
_parent.hand34._visible = false;
_parent.hand35._visible = false;
_parent.part11._visible = false;
_parent.part10._visible = false;
}
}
movieClip 590 {
}
movieClip 594 {
}
movieClip 597 {
}
movieClip 598 {
}
movieClip 600 {
}
movieClip 601 {
}
movieClip 604 {
}
movieClip 607 {
}
movieClip 609 {
}
movieClip 611 {
}
movieClip 612 {
}
movieClip 614 {
}
movieClip 616 {
}
movieClip 618 {
}
movieClip 619 {
}
movieClip 621 {
}
movieClip 623 {
}
movieClip 624 {
}
movieClip 626 {
}
movieClip 627 {
}
movieClip 629 {
}
movieClip 630 {
}
movieClip 631 {
}
movieClip 632 {
}
movieClip 651 {
frame 2 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 17 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 41 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 78 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 99 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 121 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
}
movieClip 680 {
frame 23 {
stop();
}
}
movieClip 691 {
frame 18 {
stop();
}
}
movieClip 708 {
frame 28 {
stop();
}
}
movieClip 709 {
frame 1 {
stop();
_parent.spray = true;
}
frame 2 {
_parent.spray = false;
}
frame 23 {
gotoAndStop(1);
}
}
movieClip 719 {
}
movieClip 720 {
}
movieClip 721 {
}
movieClip 722 {
}
movieClip 745 {
frame 2 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 17 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 41 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 78 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 83 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 84 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 85 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 86 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 87 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 88 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 89 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 90 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 91 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 92 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 93 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 94 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 95 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 96 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 97 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 98 {
if (spray == true) {
spray1.gotoAndPlay(2);
}
}
frame 99 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
frame 121 {
_parent.ripples4.gotoAndPlay(1);
_parent.ripples3.gotoAndPlay(1);
_parent.ripples7.gotoAndPlay(1);
_parent.ripples8.gotoAndPlay(1);
}
}
movieClip 752 {
}
movieClip 754 {
}
movieClip 756 {
}
movieClip 758 {
}
movieClip 760 {
}
movieClip 762 {
}
movieClip 764 {
}
movieClip 766 {
}
movieClip 768 {
}
movieClip 770 {
}
movieClip 772 {
}
movieClip 774 {
}
movieClip 776 {
}
movieClip 778 {
}
movieClip 822 {
frame 1 {
hair1.gotoAndStop(31);
hair2.gotoAndStop(31);
}
}
movieClip 823 {
frame 1 {
stop();
p = 0;
while (p < 19) {
parts = String('part' + p);
trace(parts);
(eval('_parent.' + parts))._visible = true;
++p;
}
onEnterFrame = null;
if (_parent._parent._parent.area2 == true) {
_parent.area2._visible = true;
_parent.hand11._visible = true;
_parent.hand12._visible = true;
_parent.hand13._visible = true;
}
_parent.hand21._visible = true;
_parent.hand22._visible = true;
_parent.hand23._visible = true;
_parent.head._visible = true;
_parent.ripples5._visible = true;
_parent.ripples6._visible = true;
_parent.area2._visible = true;
_parent.horizontal._visible = true;
_parent.vertical._visible = true;
_parent.boobs_touch._visible = true;
_parent.hair1._visible = true;
_parent.hair2._visible = true;
}
frame 2 {
p = 0;
while (p < 19) {
parts = String('part' + p);
(eval('_parent.' + parts))._visible = false;
++p;
}
onEnterFrame = function () {
if (_parent._parent._parent.mood.x <= 210 && _parent._parent._parent.mood.x >= 0) {
_parent._parent._parent.mood.x -= 0.5;
}
};
_parent.hand21._visible = false;
_parent.hand22._visible = false;
_parent.hand23._visible = false;
_parent.hand11._visible = false;
_parent.hand12._visible = false;
_parent.hand13._visible = false;
_parent.head._visible = false;
_parent.ripples5._visible = false;
_parent.ripples6._visible = false;
_parent.area2._visible = false;
_parent.horizontal._visible = false;
_parent.vertical._visible = false;
_parent.boobs_touch._visible = false;
_parent.hair1._visible = false;
_parent.hair2._visible = false;
}
}
movieClip 840 {
frame 21 {
stop();
}
}
movieClip 849 {
frame 27 {
stop();
}
}
movieClip 857 {
frame 18 {
stop();
}
}
movieClip 858 {
frame 1 {
stop();
_parent._parent._parent.fart = true;
}
frame 2 {
_parent._parent._parent.fart = false;
_parent.head.gotoAndStop(4);
}
frame 26 {
_parent._parent._parent.fart = true;
}
frame 60 {
stop();
_parent.head.gotoAndStop(1);
}
}
movieClip 860 {
}
movieClip 913 {
frame 107 {
gotoAndPlay(25);
}
}
movieClip 942 {
}
movieClip 943 {
frame 1 {
var myTouch = new Array('boobs_touch', 'pussy_touch');
i = 0;
while (i < myTouch.length) {
(eval(myTouch[i])).onPress = function () {
this.gotoAndStop(2);
};
(eval(myTouch[i])).onReleaseOutside = function () {
this.gotoAndStop(1);
};
(eval(myTouch[i])).onRelease = function () {
this.gotoAndStop(1);
};
++i;
}
}
}
movieClip 944 {
}
movieClip 947 {
}
movieClip 949 {
frame 1 {
function changeValue(d_value) {
value += d_value;
if (value >= 1) {
value = 1;
_parent.onBarFilled();
}
stripe._x = -(1 - value) * stripe._width;
}
var value = 0;
changeValue(0);
}
}
movieClip 963 {
}
movieClip 964 {
frame 1 {
function onBarFilled() {
_parent.myVar2 = true;
}
cum_btn._visible = false;
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 0;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
btn_1.postOnPress = function () {
_parent.mause_hor.gotoAndStop(2);
};
btn_2.postOnPress = function () {
_parent.mause_ver.gotoAndStop(2);
};
}
}
movieClip 966 {
}
movieClip 968 {
}
movieClip 970 {
frame 1 {
x = 420;
onEnterFrame = function () {
hider._x = x;
hider._y = 0;
if (x == 0) {
_parent.myVar1 = true;
}
};
}
}
movieClip 976 {
}
movieClip 981 {
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 16 {
stop();
_parent.help._visible = true;
_parent.mood._visible = true;
_parent.panel._visible = true;
_parent.fart_btn._visible = true;
_parent.bubble1 = true;
}
}
movieClip 988 {
frame 2 {
_parent._parent.act.act.head.gotoAndStop(4);
}
frame 27 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 33 {
stop();
_root.gotoScreen('screen3');
}
}
movieClip 990 {
frame 1 {
stop();
}
}
movieClip 993 {
}
movieClip 995 {
}
movieClip 996 {
frame 1 {
stop();
}
}
movieClip 997 {
frame 56 {
stop();
_parent.gotoAndStop(1);
}
}
movieClip 998 {
frame 1 {
stop();
}
}
movieClip 1001 {
}
movieClip 1003 {
}
movieClip 1004 {
}
movieClip 1005 {
frame 1 {
stop();
}
}
movieClip 1006 {
frame 51 {
stop();
}
}
movieClip 1007 {
frame 56 {
stop();
_parent.gotoAndStop(1);
}
}
movieClip 1008 {
frame 1 {
stop();
}
}
movieClip 1010 screen2 {
frame 1 {
help._visible = false;
mood._visible = false;
panel._visible = false;
fart_btn._visible = false;
bubble1 = false;
fart_btn.onPress = function () {
if (fart == true) {
act.act.fart.gotoAndPlay(2);
}
};
var myVar1 = false;
var myVar2 = false;
act.act.pussy_touch._visible = false;
next_btn.onPress = function () {
_root.gotoScreen('screen3');
};
act.act.hand11._visible = false;
act.act.hand12._visible = false;
act.act.hand13._visible = false;
act.act.area2._visible = false;
act.act.ripples1._visible = false;
act.act.ripples2._visible = false;
act.act.ripples7._visible = false;
act.act.ripples8._visible = false;
act.act.ripples3.gotoAndPlay(25);
act.act.ripples4.gotoAndPlay(25);
act.act.ripples7.gotoAndPlay(25);
act.act.ripples8.gotoAndPlay(25);
act.act.area1.onPress = function () {
act.act.hand11._visible = true;
act.act.hand12._visible = true;
act.act.hand13._visible = true;
act.act.hand31._visible = false;
act.act.hand32._visible = false;
act.act.hand33._visible = false;
act.act.hand34._visible = false;
act.act.hand35._visible = false;
act.act.area1._visible = false;
act.act.area2._visible = true;
act.act.ripples1._visible = true;
act.act.ripples2._visible = true;
act.act.pussy_touch._visible = true;
area2 = true;
};
act.act.area2.onPress = function () {
act.act.hand11._visible = false;
act.act.hand12._visible = false;
act.act.hand13._visible = false;
act.act.hand31._visible = true;
act.act.hand32._visible = true;
act.act.hand33._visible = true;
act.act.hand34._visible = true;
act.act.hand35._visible = true;
act.act.area1._visible = true;
act.act.area2._visible = false;
act.act.ripples1._visible = false;
act.act.ripples2._visible = false;
act.act.pussy_touch._visible = false;
area2 = false;
};
var valueFramePiching = 1;
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
if (valueFramePiching >= 1 && valueFramePiching <= 78) {
++valueFramePiching;
} else {
valueFramePiching = 1;
}
if (myVar1 == true && myVar2 == true) {
klang.gotoAndStop(2);
mood._visible = false;
panel._visible = false;
help._visible = false;
}
};
anim_manager = new AnimManager(act.act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 45, 'frame_end': 75, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 2, 'frame_end': 122, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 114, 'pixel_width': 245, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 123, 'frame_end': 243, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 114, 'pixel_width': 245, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'head=2', 'cum_clips': 'cum1 , cum2, cum3, cum4', 'face_settings_after_cum': 'head=2, eyes=2'});
anim_manager.AddSwing({'clip_name': 'vertical', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'horizontal', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
}
frame 80 {
gotoAndPlay(2);
}
}
movieClip 1015 {
}
movieClip 1017 {
}
movieClip 1019 {
}
movieClip 1021 {
}
movieClip 1023 {
}
movieClip 1025 {
}
movieClip 1027 {
}
movieClip 1029 {
}
movieClip 1031 {
}
movieClip 1033 {
}
movieClip 1035 {
}
movieClip 1036 {
}
movieClip 1047 {
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 40 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 55 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 70 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 76 {
stop();
_root.gotoScreen('screen4');
}
}
movieClip 1049 screen3 {
}
movieClip 1050 {
}
movieClip 1054 {
}
movieClip 1056 {
}
movieClip 1058 {
}
movieClip 1060 {
}
movieClip 1062 {
}
movieClip 1067 {
}
movieClip 1069 {
}
movieClip 1072 {
}
movieClip 1074 {
frame 1 {
stop();
}
}
movieClip 1076 {
}
movieClip 1078 {
}
movieClip 1081 {
frame 1 {
stop();
}
frame 78 {
stop();
gotoAndStop(1);
}
}
movieClip 1088 {
}
movieClip 1089 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(3) + 1));
};
}
frame 1 {
head.gotoAndStop(1);
}
frame 20 {
head.gotoAndStop(2);
}
frame 47 {
head.gotoAndStop(1);
}
frame 66 {
head.gotoAndStop(3);
smoke.gotoAndPlay(2);
}
frame 104 {
head.gotoAndStop(1);
}
frame 109 {
randomHold();
}
frame 144 {
randomHold();
}
frame 189 {
randomHold();
}
}
movieClip 1090 {
}
movieClip 1092 {
}
movieClip 1094 {
}
movieClip 1095 {
}
movieClip 1096 {
}
movieClip 1109 {
}
movieClip 1111 {
}
movieClip 1113 {
}
movieClip 1115 {
}
movieClip 1117 {
}
movieClip 1119 {
}
movieClip 1121 {
}
movieClip 1123 {
}
movieClip 1125 {
}
movieClip 1127 {
}
movieClip 1129 {
}
movieClip 1131 {
}
movieClip 1133 {
}
movieClip 1135 {
}
movieClip 1137 {
}
movieClip 1139 {
}
movieClip 1141 {
}
movieClip 1143 {
}
movieClip 1147 {
}
movieClip 1149 {
}
movieClip 1151 {
}
movieClip 1152 {
frame 1 {
stop();
}
}
movieClip 1154 {
}
movieClip 1156 {
}
movieClip 1158 {
}
movieClip 1160 {
}
movieClip 1162 {
}
movieClip 1164 {
}
movieClip 1166 {
}
movieClip 1168 {
}
movieClip 1172 {
}
movieClip 1174 {
}
movieClip 1176 {
}
movieClip 1177 {
frame 1 {
stop();
}
}
movieClip 1179 {
}
movieClip 1181 {
}
movieClip 1184 {
frame 1 {
onEnterFrame = function () {
if (_parent._parent._parent.varX >= 1) {
var v2 = 61 - _parent._parent._parent.varX;
gotoAndStop(v2);
} else {
var v2 = 61 + _parent._parent._parent.varY;
gotoAndStop(v2);
}
};
}
}
movieClip 1186 {
}
movieClip 1189 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1191 {
}
movieClip 1193 {
}
movieClip 1198 {
frame 1 {
onEnterFrame = function () {
if (_parent._parent._parent._parent.varX >= 1) {
var v2 = 61 - _parent._parent._parent._parent.varX;
gotoAndStop(v2);
} else {
var v2 = 61 + _parent._parent._parent._parent.varY;
gotoAndStop(v2);
}
};
}
}
movieClip 1200 {
}
movieClip 1201 {
}
movieClip 1204 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 100 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1207 {
}
movieClip 1209 {
}
movieClip 1211 {
}
movieClip 1213 {
}
movieClip 1215 {
}
movieClip 1217 {
}
movieClip 1219 {
}
movieClip 1221 {
}
movieClip 1223 {
}
movieClip 1225 {
}
movieClip 1228 {
}
movieClip 1230 {
}
movieClip 1232 {
}
movieClip 1234 {
}
movieClip 1235 {
}
movieClip 1237 {
}
movieClip 1239 {
}
movieClip 1241 {
}
movieClip 1242 {
}
movieClip 1244 {
frame 1 {
stop();
}
frame 2 {
_parent.head._visible = false;
_parent.squat._visible = false;
_parent.squat_btn._visible = false;
_parent.feet._visible = false;
_parent.boobs._visible = false;
_parent.part1._visible = false;
_parent.part2._visible = false;
_parent.part3._visible = false;
_parent.part4._visible = false;
_parent.part5._visible = false;
_parent.part6._visible = false;
_parent.part7._visible = false;
_parent.part8._visible = false;
_parent.part9._visible = false;
_parent.part10._visible = false;
_parent.part11._visible = false;
_parent.part12._visible = false;
_parent.part13._visible = false;
_parent.part14._visible = false;
_parent.part15._visible = false;
_parent.part16._visible = false;
_parent.part17._visible = false;
_parent._parent.platform._visible = false;
_parent._parent._parent._parent.act.fallGirl2._visible = false;
_parent._parent._parent._parent.act.fallGirl1._visible = false;
}
frame 22 {
stop();
_parent._parent._parent._parent.gotoAndStop(4);
}
}
movieClip 1246 {
}
movieClip 1247 {
frame 1 {
stop();
}
frame 2 {
_parent.head._visible = false;
_parent.squat._visible = false;
_parent.squat_btn._visible = false;
_parent.feet._visible = false;
_parent.boobs._visible = false;
_parent.part1._visible = false;
_parent.part2._visible = false;
_parent.part3._visible = false;
_parent.part4._visible = false;
_parent.part5._visible = false;
_parent.part6._visible = false;
_parent.part7._visible = false;
_parent.part8._visible = false;
_parent.part9._visible = false;
_parent.part10._visible = false;
_parent.part11._visible = false;
_parent.part12._visible = false;
_parent.part13._visible = false;
_parent.part14._visible = false;
_parent.part15._visible = false;
_parent.part16._visible = false;
_parent.part17._visible = false;
_parent._parent.platform._visible = false;
_parent._parent._parent._parent.act.fallGirl2._visible = false;
_parent._parent._parent._parent.act.fallGirl1._visible = false;
}
frame 22 {
stop();
_parent._parent._parent._parent.gotoAndStop(4);
}
}
movieClip 1248 {
}
movieClip 1249 {
frame 1 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(18);
}
}
frame 17 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(18);
}
}
frame 18 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(18);
}
}
frame 34 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(18);
}
}
}
movieClip 1250 {
frame 1 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(14);
}
}
frame 13 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(14);
}
}
frame 14 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(14);
}
}
frame 26 {
if (_parent._parent._parent.varY == 0) {
gotoAndPlay(1);
}
if (_parent._parent._parent.varX == 0) {
gotoAndPlay(14);
}
}
}
movieClip 1251 {
frame 1 {
stop();
}
}
movieClip 1252 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 2 {
_parent.part5.gotoAndPlay(2);
}
frame 30 {
randomFlag();
}
frame 31 {
_parent.part5.gotoAndPlay(31);
}
frame 60 {
randomFlag();
}
}
movieClip 1253 {
}
movieClip 1256 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 1259 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 1260 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 59 {
randomFlag();
}
frame 118 {
randomFlag();
}
}
movieClip 1261 {
frame 1 {
onEnterFrame = function () {
if (_parent._parent._parent.varX >= 1) {
var v3 = 61 - _parent._parent._parent.varX;
gotoAndStop(v3);
} else {
var v2 = 61 + _parent._parent._parent.varY;
gotoAndStop(v2);
}
};
}
}
movieClip 1262 {
frame 1 {
onEnterFrame = function () {
if (_parent._parent._parent.varX >= 1) {
var v3 = 61 - _parent._parent._parent.varX;
gotoAndStop(v3);
} else {
var v2 = 61 + _parent._parent._parent.varY;
gotoAndStop(v2);
}
};
}
}
movieClip 1265 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 1270 {
frame 1 {
onEnterFrame = function () {
if (_parent._parent._parent._parent.varX >= 1) {
var v2 = 61 - _parent._parent._parent._parent.varX;
gotoAndStop(v2);
} else {
var v2 = 61 + _parent._parent._parent._parent.varY;
gotoAndStop(v2);
}
};
}
}
movieClip 1271 {
}
movieClip 1272 {
frame 1 {
stop();
}
}
movieClip 1274 {
}
movieClip 1275 {
}
movieClip 1276 {
}
movieClip 1277 {
}
movieClip 1278 {
}
movieClip 1279 {
}
movieClip 1280 {
}
movieClip 1284 {
}
movieClip 1286 {
}
movieClip 1288 {
}
movieClip 1290 {
}
movieClip 1291 {
frame 1 {
stop();
}
frame 2 {
_parent.head.gotoAndStop(4);
_parent.boobs._visible = false;
_parent.part1._visible = false;
_parent.part2._visible = false;
_parent.part3._visible = false;
_parent.part4._visible = false;
_parent.part5._visible = false;
_parent.part6._visible = false;
_parent.part7._visible = false;
_parent.part8._visible = false;
_parent.part9._visible = false;
_parent.part10._visible = false;
_parent.part11._visible = false;
_parent.part12._visible = false;
_parent.part13._visible = false;
_parent.part14._visible = false;
_parent.part15._visible = false;
hand1.gotoAndStop(2);
hand2.gotoAndStop(2);
}
frame 43 {
gotoAndStop(1);
_parent.squat_btn._visible = true;
_parent.head.gotoAndStop(2);
_parent.boobs._visible = true;
_parent.part1._visible = true;
_parent.part2._visible = true;
_parent.part3._visible = true;
_parent.part4._visible = true;
_parent.part5._visible = true;
_parent.part6._visible = true;
_parent.part7._visible = true;
_parent.part8._visible = true;
_parent.part9._visible = true;
_parent.part10._visible = true;
_parent.part11._visible = true;
_parent.part12._visible = true;
_parent.part13._visible = true;
_parent.part14._visible = true;
_parent.part15._visible = true;
}
}
movieClip 1293 {
frame 1 {
_parent._parent._parent._parent.leftGirl = true;
_parent._parent._parent._parent.rightGirl = false;
}
}
movieClip 1295 {
}
movieClip 1296 {
frame 1 {
_parent._parent._parent._parent.leftGirl = false;
_parent._parent._parent._parent.rightGirl = true;
}
}
movieClip 1297 {
frame 1 {
_parent.varY = 0;
}
frame 1 {
_parent.varX = 60;
}
frame 2 {
_parent.varY = 0;
}
frame 2 {
_parent.varX = 59;
}
frame 3 {
_parent.varY = 0;
}
frame 3 {
_parent.varX = 58;
}
frame 4 {
_parent.varY = 0;
}
frame 4 {
_parent.varX = 57;
}
frame 5 {
_parent.varY = 0;
}
frame 5 {
_parent.varX = 56;
}
frame 6 {
_parent.varY = 0;
}
frame 6 {
_parent.varX = 55;
}
frame 7 {
_parent.varY = 0;
}
frame 7 {
_parent.varX = 54;
}
frame 8 {
_parent.varY = 0;
}
frame 8 {
_parent.varX = 53;
}
frame 9 {
_parent.varY = 0;
}
frame 9 {
_parent.varX = 52;
}
frame 10 {
_parent.varY = 0;
}
frame 10 {
_parent.varX = 51;
}
frame 11 {
_parent.varY = 0;
}
frame 11 {
_parent.varX = 50;
}
frame 12 {
_parent.varY = 0;
}
frame 12 {
_parent.varX = 49;
}
frame 13 {
_parent.varY = 0;
}
frame 13 {
_parent.varX = 48;
}
frame 14 {
_parent.varY = 0;
}
frame 14 {
_parent.varX = 47;
}
frame 15 {
_parent.varY = 0;
}
frame 15 {
_parent.varX = 46;
}
frame 16 {
_parent.varY = 0;
}
frame 16 {
_parent.varX = 45;
}
frame 17 {
_parent.varY = 0;
}
frame 17 {
_parent.varX = 44;
}
frame 18 {
_parent.varY = 0;
}
frame 18 {
_parent.varX = 43;
}
frame 19 {
_parent.varY = 0;
}
frame 19 {
_parent.varX = 42;
}
frame 20 {
_parent.varY = 0;
}
frame 20 {
_parent.varX = 41;
}
frame 21 {
_parent.varY = 0;
}
frame 21 {
_parent.varX = 40;
}
frame 22 {
_parent.varY = 0;
}
frame 22 {
_parent.varX = 39;
}
frame 23 {
_parent.varY = 0;
}
frame 23 {
_parent.varX = 38;
}
frame 24 {
_parent.varY = 0;
}
frame 24 {
_parent.varX = 37;
}
frame 25 {
_parent.varY = 0;
}
frame 25 {
_parent.varX = 36;
}
frame 26 {
_parent.varY = 0;
}
frame 26 {
_parent.varX = 35;
}
frame 27 {
_parent.varY = 0;
}
frame 27 {
_parent.varX = 34;
}
frame 28 {
_parent.varY = 0;
}
frame 28 {
_parent.varX = 33;
}
frame 29 {
_parent.varY = 0;
}
frame 29 {
_parent.varX = 32;
}
frame 30 {
_parent.varY = 0;
}
frame 30 {
_parent.varX = 31;
}
frame 31 {
_parent.varY = 0;
}
frame 31 {
_parent.varX = 30;
}
frame 32 {
_parent.varY = 0;
}
frame 32 {
_parent.varX = 29;
}
frame 33 {
_parent.varY = 0;
}
frame 33 {
_parent.varX = 28;
}
frame 34 {
_parent.varY = 0;
}
frame 34 {
_parent.varX = 27;
}
frame 35 {
_parent.varY = 0;
}
frame 35 {
_parent.varX = 26;
}
frame 36 {
_parent.varY = 0;
}
frame 36 {
_parent.varX = 25;
}
frame 37 {
_parent.varY = 0;
}
frame 37 {
_parent.varX = 24;
}
frame 38 {
_parent.varY = 0;
}
frame 38 {
_parent.varX = 23;
}
frame 39 {
_parent.varY = 0;
}
frame 39 {
_parent.varX = 22;
}
frame 40 {
_parent.varY = 0;
}
frame 40 {
_parent.varX = 21;
}
frame 41 {
_parent.varY = 0;
}
frame 41 {
_parent.varX = 20;
}
frame 42 {
_parent.varY = 0;
}
frame 42 {
_parent.varX = 19;
}
frame 43 {
_parent.varY = 0;
}
frame 43 {
_parent.varX = 18;
}
frame 44 {
_parent.varY = 0;
}
frame 44 {
_parent.varX = 17;
}
frame 45 {
_parent.varY = 0;
}
frame 45 {
_parent.varX = 16;
}
frame 46 {
_parent.varY = 0;
}
frame 46 {
_parent.varX = 15;
}
frame 47 {
_parent.varY = 0;
}
frame 47 {
_parent.varX = 14;
}
frame 48 {
_parent.varY = 0;
}
frame 48 {
_parent.varX = 13;
}
frame 49 {
_parent.varY = 0;
}
frame 49 {
_parent.varX = 12;
}
frame 50 {
_parent.varY = 0;
}
frame 50 {
_parent.varX = 11;
}
frame 51 {
_parent.varY = 0;
}
frame 51 {
_parent.varX = 10;
}
frame 52 {
_parent.varY = 0;
}
frame 52 {
_parent.varX = 9;
}
frame 53 {
_parent.varY = 0;
}
frame 53 {
_parent.varX = 8;
}
frame 54 {
_parent.varY = 0;
}
frame 54 {
_parent.varX = 7;
}
frame 55 {
_parent.varY = 0;
}
frame 55 {
_parent.varX = 6;
}
frame 56 {
_parent.varY = 0;
}
frame 56 {
_parent.varX = 5;
}
frame 57 {
_parent.varY = 0;
}
frame 57 {
_parent.varX = 4;
}
frame 58 {
_parent.varY = 0;
}
frame 58 {
_parent.varX = 3;
}
frame 59 {
_parent.varY = 0;
}
frame 59 {
_parent.varX = 2;
}
frame 60 {
_parent.varY = 0;
}
frame 60 {
_parent.varX = 1;
}
frame 61 {
_parent.varY = 1;
}
frame 61 {
_parent.varX = 0;
}
frame 62 {
_parent.varY = 2;
}
frame 62 {
_parent.varX = 0;
}
frame 63 {
_parent.varY = 3;
}
frame 63 {
_parent.varX = 0;
}
frame 64 {
_parent.varY = 4;
}
frame 64 {
_parent.varX = 0;
}
frame 65 {
_parent.varY = 5;
}
frame 65 {
_parent.varX = 0;
}
frame 66 {
_parent.varY = 6;
}
frame 66 {
_parent.varX = 0;
}
frame 67 {
_parent.varY = 7;
}
frame 67 {
_parent.varX = 0;
}
frame 68 {
_parent.varY = 8;
}
frame 68 {
_parent.varX = 0;
}
frame 69 {
_parent.varY = 9;
}
frame 69 {
_parent.varX = 0;
}
frame 70 {
_parent.varY = 10;
}
frame 70 {
_parent.varX = 0;
}
frame 71 {
_parent.varY = 11;
}
frame 71 {
_parent.varX = 0;
}
frame 72 {
_parent.varY = 12;
}
frame 72 {
_parent.varX = 0;
}
frame 73 {
_parent.varY = 13;
}
frame 73 {
_parent.varX = 0;
}
frame 74 {
_parent.varY = 14;
}
frame 74 {
_parent.varX = 0;
}
frame 75 {
_parent.varY = 15;
}
frame 75 {
_parent.varX = 0;
}
frame 76 {
_parent.varY = 16;
}
frame 76 {
_parent.varX = 0;
}
frame 77 {
_parent.varY = 17;
}
frame 77 {
_parent.varX = 0;
}
frame 78 {
_parent.varY = 18;
}
frame 78 {
_parent.varX = 0;
}
frame 79 {
_parent.varY = 19;
}
frame 79 {
_parent.varX = 0;
}
frame 80 {
_parent.varY = 20;
}
frame 80 {
_parent.varX = 0;
}
frame 81 {
_parent.varY = 21;
}
frame 81 {
_parent.varX = 0;
}
frame 82 {
_parent.varY = 22;
}
frame 82 {
_parent.varX = 0;
}
frame 83 {
_parent.varY = 23;
}
frame 83 {
_parent.varX = 0;
}
frame 84 {
_parent.varY = 24;
}
frame 84 {
_parent.varX = 0;
}
frame 85 {
_parent.varY = 25;
}
frame 85 {
_parent.varX = 0;
}
frame 86 {
_parent.varY = 26;
}
frame 86 {
_parent.varX = 0;
}
frame 87 {
_parent.varY = 27;
}
frame 87 {
_parent.varX = 0;
}
frame 88 {
_parent.varY = 28;
}
frame 88 {
_parent.varX = 0;
}
frame 89 {
_parent.varY = 29;
}
frame 89 {
_parent.varX = 0;
}
frame 90 {
_parent.varY = 30;
}
frame 90 {
_parent.varX = 0;
}
frame 91 {
_parent.varY = 31;
}
frame 91 {
_parent.varX = 0;
}
frame 92 {
_parent.varY = 32;
}
frame 92 {
_parent.varX = 0;
}
frame 93 {
_parent.varY = 33;
}
frame 93 {
_parent.varX = 0;
}
frame 94 {
_parent.varY = 34;
}
frame 94 {
_parent.varX = 0;
}
frame 95 {
_parent.varY = 35;
}
frame 95 {
_parent.varX = 0;
}
frame 96 {
_parent.varY = 36;
}
frame 96 {
_parent.varX = 0;
}
frame 97 {
_parent.varY = 37;
}
frame 97 {
_parent.varX = 0;
}
frame 98 {
_parent.varY = 38;
}
frame 98 {
_parent.varX = 0;
}
frame 99 {
_parent.varY = 39;
}
frame 99 {
_parent.varX = 0;
}
frame 100 {
_parent.varY = 40;
}
frame 100 {
_parent.varX = 0;
}
frame 101 {
_parent.varY = 41;
}
frame 101 {
_parent.varX = 0;
}
frame 102 {
_parent.varY = 42;
}
frame 102 {
_parent.varX = 0;
}
frame 103 {
_parent.varY = 43;
}
frame 103 {
_parent.varX = 0;
}
frame 104 {
_parent.varY = 44;
}
frame 104 {
_parent.varX = 0;
}
frame 105 {
_parent.varY = 45;
}
frame 105 {
_parent.varX = 0;
}
frame 106 {
_parent.varY = 46;
}
frame 106 {
_parent.varX = 0;
}
frame 107 {
_parent.varY = 47;
}
frame 107 {
_parent.varX = 0;
}
frame 108 {
_parent.varY = 48;
}
frame 108 {
_parent.varX = 0;
}
frame 109 {
_parent.varY = 49;
}
frame 109 {
_parent.varX = 0;
}
frame 110 {
_parent.varY = 50;
}
frame 110 {
_parent.varX = 0;
}
frame 111 {
_parent.varY = 51;
}
frame 111 {
_parent.varX = 0;
}
frame 112 {
_parent.varY = 52;
}
frame 112 {
_parent.varX = 0;
}
frame 113 {
_parent.varY = 53;
}
frame 113 {
_parent.varX = 0;
}
frame 114 {
_parent.varY = 54;
}
frame 114 {
_parent.varX = 0;
}
frame 115 {
_parent.varY = 55;
}
frame 115 {
_parent.varX = 0;
}
frame 116 {
_parent.varY = 56;
}
frame 116 {
_parent.varX = 0;
}
frame 117 {
_parent.varY = 57;
}
frame 117 {
_parent.varX = 0;
}
frame 118 {
_parent.varY = 58;
}
frame 118 {
_parent.varX = 0;
}
frame 119 {
_parent.varY = 59;
}
frame 119 {
_parent.varX = 0;
}
frame 120 {
_parent.varY = 60;
}
frame 120 {
_parent.varX = 0;
}
frame 121 {
_parent.varY = 60;
}
frame 121 {
_parent.varX = 0;
}
}
movieClip 1299 {
frame 1 {
onEnterFrame = function () {
if (_parent.varA + _parent.varY >= 61) {
_parent._parent._parent.fall1 = true;
} else {
_parent._parent._parent.fall1 = false;
}
};
}
}
movieClip 1301 {
frame 1 {
stop();
}
}
movieClip 1302 {
frame 1 {
onEnterFrame = function () {
if (_parent.varB + _parent.varX >= 61) {
_parent._parent._parent.fall2 = true;
} else {
_parent._parent._parent.fall2 = false;
}
};
}
}
movieClip 1303 {
frame 1 {
girl.squat_btn.onPress = function () {
girl.squat.gotoAndPlay(2);
girl.squat_btn._visible = false;
};
}
frame 2 {
varA = 60;
}
frame 3 {
varA = 59;
}
frame 4 {
varA = 58;
}
frame 5 {
varA = 57;
}
frame 6 {
varA = 56;
}
frame 7 {
varA = 55;
}
frame 8 {
varA = 54;
}
frame 9 {
varA = 53;
}
frame 10 {
varA = 52;
}
frame 11 {
varA = 51;
}
frame 12 {
varA = 50;
}
frame 13 {
varA = 49;
}
frame 14 {
varA = 48;
}
frame 15 {
varA = 47;
}
frame 16 {
varA = 46;
}
frame 17 {
varA = 45;
}
frame 18 {
varA = 44;
}
frame 19 {
varA = 43;
}
frame 20 {
varA = 42;
}
frame 21 {
varA = 41;
}
frame 22 {
varA = 40;
}
frame 23 {
varA = 39;
}
frame 24 {
varA = 38;
}
frame 25 {
varA = 37;
}
frame 26 {
varA = 36;
}
frame 27 {
varA = 35;
}
frame 28 {
varA = 34;
}
frame 29 {
varA = 33;
}
frame 30 {
varA = 32;
}
frame 31 {
varA = 31;
}
frame 32 {
varA = 30;
}
frame 33 {
varA = 29;
}
frame 34 {
varA = 28;
}
frame 35 {
varA = 27;
}
frame 36 {
varA = 26;
}
frame 37 {
varA = 25;
}
frame 38 {
varA = 24;
}
frame 39 {
varA = 23;
}
frame 40 {
varA = 22;
}
frame 41 {
varA = 21;
}
frame 42 {
varA = 20;
}
frame 43 {
varA = 19;
}
frame 44 {
varA = 18;
}
frame 45 {
varA = 17;
}
frame 46 {
varA = 16;
}
frame 47 {
varA = 15;
}
frame 48 {
varA = 14;
}
frame 49 {
varA = 13;
}
frame 50 {
varA = 12;
}
frame 51 {
varA = 11;
}
frame 52 {
varA = 10;
}
frame 53 {
varA = 9;
}
frame 54 {
varA = 8;
}
frame 55 {
varA = 7;
}
frame 56 {
varA = 6;
}
frame 57 {
varB = 0;
}
frame 57 {
varA = 5;
}
frame 58 {
varB = 0;
}
frame 58 {
varA = 4;
}
frame 59 {
varB = 0;
}
frame 59 {
varA = 3;
}
frame 60 {
varB = 0;
}
frame 60 {
varA = 2;
}
frame 61 {
varB = 0;
}
frame 61 {
varA = 1;
}
frame 62 {
varB = 1;
}
frame 62 {
varA = 0;
}
frame 63 {
varB = 2;
}
frame 63 {
varA = 0;
}
frame 64 {
varB = 3;
}
frame 64 {
varA = 0;
}
frame 65 {
varB = 4;
}
frame 65 {
varA = 0;
}
frame 66 {
varB = 5;
}
frame 66 {
varA = 0;
}
frame 67 {
varB = 6;
}
frame 68 {
varB = 7;
}
frame 69 {
varB = 8;
}
frame 70 {
varB = 9;
}
frame 71 {
varB = 10;
}
frame 72 {
varB = 11;
}
frame 73 {
varB = 12;
}
frame 74 {
varB = 13;
}
frame 75 {
varB = 14;
}
frame 76 {
varB = 15;
}
frame 77 {
varB = 16;
}
frame 78 {
varB = 17;
}
frame 79 {
varB = 18;
}
frame 80 {
varB = 19;
}
frame 81 {
varB = 20;
}
frame 82 {
varB = 21;
}
frame 83 {
varB = 22;
}
frame 84 {
varB = 23;
}
frame 85 {
varB = 24;
}
frame 86 {
varB = 25;
}
frame 87 {
varB = 26;
}
frame 88 {
varB = 27;
}
frame 89 {
varB = 28;
}
frame 90 {
varB = 29;
}
frame 91 {
varB = 30;
}
frame 92 {
varB = 31;
}
frame 93 {
varB = 32;
}
frame 94 {
varB = 33;
}
frame 95 {
varB = 34;
}
frame 96 {
varB = 35;
}
frame 97 {
varB = 36;
}
frame 98 {
varB = 37;
}
frame 99 {
varB = 38;
}
frame 100 {
varB = 39;
}
frame 101 {
varB = 40;
}
frame 102 {
varB = 41;
}
frame 103 {
varB = 42;
}
frame 104 {
varB = 43;
}
frame 105 {
varB = 44;
}
frame 106 {
varB = 45;
}
frame 107 {
varB = 46;
}
frame 108 {
varB = 47;
}
frame 109 {
varB = 48;
}
frame 110 {
varB = 49;
}
frame 111 {
varB = 50;
}
frame 112 {
varB = 51;
}
frame 113 {
varB = 52;
}
frame 114 {
varB = 53;
}
frame 115 {
varB = 54;
}
frame 116 {
varB = 55;
}
frame 117 {
varB = 56;
}
frame 118 {
varB = 57;
}
frame 119 {
varB = 58;
}
frame 120 {
varB = 59;
}
frame 121 {
varB = 60;
}
frame 122 {
varB = 60;
}
}
movieClip 1305 {
frame 1 {
_parent._parent.line1 = true;
_parent._parent.line2 = false;
}
}
movieClip 1308 {
frame 1 {
_parent._parent.plat1.gotoAndStop(1);
}
frame 11 {
_parent._parent.plat1.gotoAndStop(2);
}
frame 25 {
stop();
_parent._parent._parent.gotoAndStop(4);
}
}
movieClip 1309 {
frame 1 {
stop();
}
frame 2 {
_parent._parent.time_is_out = true;
_parent.fallGirl1._visible = false;
_parent.slip.girl.squat_btn._visible = false;
}
}
movieClip 1311 {
frame 1 {
_parent._parent.plat1.gotoAndStop(1);
}
frame 11 {
_parent._parent.plat1.gotoAndStop(2);
}
frame 21 {
stop();
_parent._parent._parent.gotoAndStop(4);
}
}
movieClip 1312 {
frame 1 {
stop();
}
frame 2 {
_parent._parent.time_is_out = true;
_parent.fallGirl2._visible = false;
_parent.slip.girl.squat_btn._visible = false;
}
}
movieClip 1314 {
frame 1 {
_parent._parent.line1 = false;
_parent._parent.line2 = true;
}
}
movieClip 1315 {
frame 1 {
plat1.gotoAndStop(2);
onEnterFrame = function () {
if (gull1.gull.hitTest(slip.girl.head) == true) {
gull1.gotoAndStop(1);
gull2.gotoAndStop(1);
if (fallGirl4 == false) {
slip.girl.fallGirl3.gotoAndPlay(2);
} else {
slip.girl.fallGirl4.gotoAndPlay(2);
}
}
};
}
}
movieClip 1319 {
}
movieClip 1322 {
}
movieClip 1325 {
}
movieClip 1327 {
}
movieClip 1328 {
}
movieClip 1329 {
}
movieClip 1342 {
}
movieClip 1344 {
}
movieClip 1345 {
}
movieClip 1346 {
}
movieClip 1360 {
}
movieClip 1363 {
}
movieClip 1365 {
}
movieClip 1367 {
frame 46 {
stop();
_parent._parent.gotoAndStop(2);
}
}
movieClip 1368 {
frame 1 {
stop();
next_btn.onPress = function () {
gotoAndStop(2);
};
}
frame 2 {
stop();
easy_btn.onPress = function () {
gotoAndStop(3);
_parent.speedGame = 0.02;
_parent.pace = false;
};
medium_btn.onPress = function () {
gotoAndStop(3);
_parent.speedGame = 0.04;
_parent.pace = true;
};
hard_btn.onPress = function () {
gotoAndStop(3);
_parent.speedGame = 0.06;
_parent.pace = true;
};
}
}
movieClip 1371 {
}
movieClip 1387 {
}
movieClip 1396 {
}
movieClip 1397 {
}
movieClip 1401 {
}
movieClip 1402 {
}
movieClip 1403 {
frame 1 {
head.hair1.gotoAndStop(61);
head.hair2.gotoAndStop(61);
head.hair3.gotoAndStop(61);
head.eye.eye.gotoAndStop(121);
}
}
movieClip 1408 {
frame 10 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen5');
};
}
}
movieClip 1409 {
}
movieClip 1411 {
}
movieClip 1415 {
}
movieClip 1418 {
}
movieClip 1421 {
}
movieClip 1423 {
}
movieClip 1425 {
}
movieClip 1427 {
}
movieClip 1429 {
}
movieClip 1431 {
}
movieClip 1433 {
}
movieClip 1435 {
}
movieClip 1437 {
}
movieClip 1439 {
}
movieClip 1441 {
}
movieClip 1443 {
}
movieClip 1446 {
}
movieClip 1449 {
}
movieClip 1450 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 120 {
randomHold();
}
}
movieClip 1453 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 103 {
randomHold();
}
frame 200 {
randomHold();
}
}
movieClip 1454 {
}
movieClip 1456 {
}
movieClip 1458 {
}
movieClip 1475 {
}
movieClip 1477 {
}
movieClip 1479 {
}
movieClip 1485 {
}
movieClip 1487 {
}
movieClip 1489 {
}
movieClip 1491 {
}
movieClip 1492 {
}
movieClip 1493 {
}
movieClip 1501 {
frame 21 {
stop();
}
}
movieClip 1503 {
}
movieClip 1504 screen4 {
frame 1 {
stop();
act.slip.girl.squat_btn._visible = false;
act.gull2.gotoAndStop(1);
act.gotoAndStop(62);
act.slip.gotoAndStop(62);
act.slip.girl.gotoAndStop(61);
act.slip.girl.boobs.boobs1.gotoAndStop(61);
act.slip.girl.boobs.boobs1.boobs2.gotoAndStop(61);
act.slip.girl.squat.boobs.boobs1.boobs2.gotoAndStop(2);
act.slip.girl.squat.boobs.boobs1.gotoAndStop(61);
smoke.gotoAndStop(1);
var fall1 = false;
var fall2 = false;
var line1 = false;
var line2 = false;
var time_is_out = true;
var speedGame = speedGame;
var timer = 720;
act.slip.girl.head.gotoAndStop(1);
}
frame 2 {
stop();
if (pace == true) {
act.slip.girl.feet.gotoAndStop(3);
} else {
act.slip.girl.feet.gotoAndStop(2);
}
act.gull2.gotoAndPlay(1);
act.slip.girl.head.gotoAndStop(2);
how_play._visible = false;
time_is_out = false;
anim_manager3 = new AnimManager(act.slip.girl, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.slip.girl.boobs, panel4);
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager(act.slip.girl.squat.boobs, panel5);
panel5.anim_manager = anim_manager5;
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.slip, panel2);
panel2.anim_manager = anim_manager2;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 2, 'frame_end': 122, 'auto_speed': speedGame, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 2, 'frame_end': 122, 'auto_speed': speedGame, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 0, 'pixel_width': 640, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 250, 'pixel_width': 140, 'face_settings': ''});
anim_manager5.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 250, 'pixel_width': 140, 'face_settings': ''});
anim_manager4.AddSwing({'clip_name': 'boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager4.AddSwing({'clip_name': 'boobs1.boobs2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager5.AddSwing({'clip_name': 'boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager5.AddSwing({'clip_name': 'boobs1.boobs2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
anim_manager5.Update(_xmouse, _ymouse);
if (fall1 == true && line1 == true && rightGirl == true) {
act.fallGirl1.gotoAndStop(2);
act.slip.girl._visible = false;
}
if (fall2 == true && line2 == true && leftGirl == true) {
act.fallGirl2.gotoAndStop(2);
act.slip.girl._visible = false;
}
if (time_is_out == false) {
--timer;
}
var v1 = timer / 24;
v1 = int(v1);
var v2 = v1 / 60;
v2 = int(v2);
var v3 = v1 - v2 * 60;
if (v3 >= 10) {
time_label = v2 + ':' + v3;
} else {
time_label = v2 + ':0' + v3;
}
if (v1 == 0) {
time_is_out = true;
timer = 0;
gotoAndStop(3);
}
smoke.gotoAndStop(91 - v1);
};
}
frame 3 {
stop();
anim_manager3 = new AnimManager();
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager();
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager();
panel5.anim_manager = anim_manager4;
anim_manager1 = new AnimManager();
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager();
panel2.anim_manager = anim_manager2;
}
frame 4 {
stop();
again_btn.onPress = function () {
gotoAndStop(1);
};
anim_manager3 = new AnimManager();
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager();
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager();
panel5.anim_manager = anim_manager4;
anim_manager1 = new AnimManager();
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager();
panel2.anim_manager = anim_manager2;
}
}
movieClip 1510 {
frame 1 {
stop();
}
}
movieClip 1512 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(3) + 1));
};
}
frame 1 {
head.gotoAndStop(1);
}
frame 20 {
head.gotoAndStop(2);
}
frame 47 {
head.gotoAndStop(3);
}
frame 108 {
head.gotoAndStop(1);
}
frame 109 {
randomHold();
}
frame 144 {
randomHold();
}
frame 189 {
randomHold();
}
}
movieClip 1513 {
}
movieClip 1514 {
}
movieClip 1518 {
}
movieClip 1520 {
}
movieClip 1522 {
}
movieClip 1525 {
}
movieClip 1527 {
}
movieClip 1530 {
}
movieClip 1533 {
}
movieClip 1536 {
}
movieClip 1539 {
}
movieClip 1546 {
}
movieClip 1548 {
}
movieClip 1550 {
}
movieClip 1552 {
}
movieClip 1554 {
}
movieClip 1556 {
}
movieClip 1558 {
}
movieClip 1560 {
}
movieClip 1563 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(3) + 1));
};
}
frame 85 {
_parent.gull1.gotoAndPlay(2);
}
frame 112 {
_parent.gull1.gotoAndStop(1);
}
frame 204 {
randomFlag();
}
frame 288 {
_parent.gull1.gotoAndPlay(30);
}
frame 315 {
_parent.gull1.gotoAndStop(1);
}
frame 407 {
randomFlag();
}
frame 524 {
randomFlag();
}
}
movieClip 1565 {
}
movieClip 1568 {
}
movieClip 1570 {
}
movieClip 1573 {
}
movieClip 1575 {
}
movieClip 1577 {
}
movieClip 1579 {
}
movieClip 1581 {
}
movieClip 1583 {
}
movieClip 1586 {
}
movieClip 1592 {
}
movieClip 1595 {
}
movieClip 1598 {
}
movieClip 1601 {
}
movieClip 1605 {
}
movieClip 1608 {
}
movieClip 1618 {
}
movieClip 1620 {
}
movieClip 1621 {
frame 1 {
stop();
}
frame 2 {
_parent.fallGirl4 = false;
}
frame 29 {
gotoAndStop(1);
}
frame 30 {
_parent.fallGirl4 = true;
}
frame 58 {
gotoAndStop(1);
}
}
movieClip 1622 {
frame 1 {
plat1.gotoAndStop(2);
onEnterFrame = function () {
if (gull1.gull.hitTest(slip.girl.head) == true) {
gull1.gotoAndStop(1);
gull2.gotoAndStop(1);
if (fallGirl4 == false) {
slip.girl.fallGirl3.gotoAndPlay(2);
} else {
slip.girl.fallGirl4.gotoAndPlay(2);
}
}
};
}
}
movieClip 1625 {
frame 1 {
next_btn.onPress = function () {
_parent.gotoAndStop(2);
};
}
}
movieClip 1633 {
}
movieClip 1634 {
}
movieClip 1636 {
frame 1 {
stop();
}
frame 2 {
stop();
next_btn.onPress = function () {
gotoAndStop(3);
};
}
frame 3 {
stop();
easy_btn.onPress = function () {
gotoAndStop(4);
_parent.speedGame = 0.02;
_parent.pace = false;
};
medium_btn.onPress = function () {
gotoAndStop(4);
_parent.speedGame = 0.04;
_parent.pace = true;
};
hard_btn.onPress = function () {
gotoAndStop(4);
_parent.speedGame = 0.06;
_parent.pace = true;
};
}
frame 4 {
stop();
}
}
movieClip 1639 {
}
movieClip 1647 {
}
movieClip 1652 {
}
movieClip 1654 {
}
movieClip 1655 {
frame 1 {
part.head.gotoAndStop(2);
}
}
movieClip 1660 {
frame 10 {
stop();
next_btn.onPress = function () {
_root.gotoScreen('screen6');
};
}
}
movieClip 1662 {
}
movieClip 1664 {
}
movieClip 1665 screen5 {
frame 1 {
stop();
act.gull2.gotoAndStop(1);
act.gotoAndStop(62);
act.slip.gotoAndStop(62);
act.slip.girl.gotoAndStop(61);
act.slip.girl.boobs.boobs1.gotoAndStop(61);
act.slip.girl.boobs.boobs1.boobs2.gotoAndStop(61);
act.slip.girl.squat.boobs.boobs1.boobs2.gotoAndStop(2);
act.slip.girl.squat.boobs.boobs1.gotoAndStop(61);
smoke.gotoAndStop(1);
var fall1 = false;
var fall2 = false;
var line1 = false;
var line2 = false;
var time_is_out = true;
var speedGame = speedGame;
var timer = 720;
act.slip.girl.head.gotoAndStop(1);
}
frame 2 {
stop();
if (pace == true) {
act.slip.girl.feet.gotoAndStop(3);
} else {
act.slip.girl.feet.gotoAndStop(2);
}
act.gull2.gotoAndPlay(1);
act.slip.girl.head.gotoAndStop(2);
how_play._visible = false;
time_is_out = false;
anim_manager3 = new AnimManager(act.slip.girl, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.slip.girl.boobs, panel4);
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager(act.slip.girl.squat.boobs, panel5);
panel5.anim_manager = anim_manager5;
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.slip, panel2);
panel2.anim_manager = anim_manager2;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 2, 'frame_end': 122, 'auto_speed': speedGame, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 2, 'frame_end': 122, 'auto_speed': speedGame, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 0, 'pixel_width': 640, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 250, 'pixel_width': 140, 'face_settings': ''});
anim_manager5.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 0, 'pixel_start': 250, 'pixel_width': 140, 'face_settings': ''});
anim_manager4.AddSwing({'clip_name': 'boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager4.AddSwing({'clip_name': 'boobs1.boobs2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager5.AddSwing({'clip_name': 'boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
anim_manager5.AddSwing({'clip_name': 'boobs1.boobs2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 1});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
anim_manager5.Update(_xmouse, _ymouse);
if (fall1 == true && line1 == true && rightGirl == true) {
act.fallGirl1.gotoAndStop(2);
act.slip.girl._visible = false;
}
if (fall2 == true && line2 == true && leftGirl == true) {
act.fallGirl2.gotoAndStop(2);
act.slip.girl._visible = false;
}
if (time_is_out == false) {
--timer;
}
var v1 = timer / 24;
v1 = int(v1);
var v2 = v1 / 60;
v2 = int(v2);
var v3 = v1 - v2 * 60;
if (v3 >= 10) {
time_label = v2 + ':' + v3;
} else {
time_label = v2 + ':0' + v3;
}
if (v1 == 0) {
time_is_out = true;
timer = 0;
gotoAndStop(3);
}
smoke.gotoAndStop(91 - v1);
};
}
frame 3 {
stop();
anim_manager3 = new AnimManager();
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager();
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager();
panel5.anim_manager = anim_manager4;
anim_manager1 = new AnimManager();
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager();
panel2.anim_manager = anim_manager2;
}
frame 4 {
stop();
again_btn.onPress = function () {
gotoAndStop(1);
};
anim_manager3 = new AnimManager();
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager();
panel4.anim_manager = anim_manager4;
anim_manager5 = new AnimManager();
panel5.anim_manager = anim_manager4;
anim_manager1 = new AnimManager();
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager();
panel2.anim_manager = anim_manager2;
}
}
movieClip 1666 {
}
movieClip 1668 {
}
movieClip 1670 {
}
movieClip 1672 {
}
movieClip 1674 {
}
movieClip 1676 {
}
movieClip 1678 {
}
movieClip 1680 {
}
movieClip 1682 {
}
movieClip 1684 {
}
movieClip 1686 {
}
movieClip 1687 {
}
movieClip 1689 {
}
movieClip 1691 {
}
movieClip 1693 {
}
movieClip 1695 {
}
movieClip 1697 {
}
movieClip 1699 {
}
movieClip 1703 {
}
movieClip 1704 {
}
movieClip 1707 {
}
movieClip 1710 {
}
movieClip 1714 {
}
movieClip 1715 {
}
movieClip 1717 {
}
movieClip 1719 {
}
movieClip 1721 {
}
movieClip 1725 {
}
movieClip 1726 {
}
movieClip 1730 {
}
movieClip 1731 {
frame 1 {
stop();
}
}
movieClip 1733 {
}
movieClip 1735 {
}
movieClip 1737 {
}
movieClip 1739 {
}
movieClip 1742 {
}
movieClip 1744 {
}
movieClip 1746 {
}
movieClip 1748 {
}
movieClip 1750 {
}
movieClip 1752 {
}
movieClip 1754 {
}
movieClip 1756 {
}
movieClip 1758 {
}
movieClip 1760 {
}
movieClip 1762 {
}
movieClip 1763 {
}
movieClip 1764 {
}
movieClip 1766 {
}
movieClip 1768 {
}
movieClip 1769 {
}
movieClip 1770 {
}
movieClip 1773 {
}
movieClip 1790 screen6 {
frame 1 {
act.man.hand1._visible = false;
act.man.hand2._visible = false;
act.man.hand3._visible = true;
act.girl.hand1._visible = false;
act.girl.hand2._visible = false;
act.girl.hand3._visible = false;
act.girl.hand4._visible = true;
act.girl.hand5._visible = true;
act.girl.hand6._visible = true;
act.girl.head.gotoAndStop(2);
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 40 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 55 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 70 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 85 {
stop();
act.man.hand1._visible = true;
act.man.hand2._visible = true;
act.man.hand3._visible = false;
act.girl.hand1._visible = true;
act.girl.hand2._visible = true;
act.girl.hand3._visible = true;
act.girl.hand4._visible = false;
act.girl.hand5._visible = false;
act.girl.hand6._visible = false;
next_btn.onPress = function () {
play();
};
}
frame 100 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 101 {
act.girl.head.gotoAndStop(1);
}
frame 115 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 130 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 131 {
act.man.hand1._visible = false;
act.man.hand2._visible = false;
act.man.hand3._visible = true;
act.girl.hand1._visible = false;
act.girl.hand2._visible = false;
act.girl.hand3._visible = false;
act.girl.hand4._visible = true;
act.girl.hand5._visible = true;
act.girl.hand6._visible = true;
}
frame 144 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 150 {
stop();
_root.gotoScreen('screen7');
}
}
movieClip 1792 screen7 {
frame 75 {
stop();
_root.gotoScreen('screen8');
}
}
movieClip 1795 {
}
movieClip 1797 {
}
movieClip 1799 {
}
movieClip 1801 {
}
movieClip 1803 {
}
movieClip 1805 {
}
movieClip 1807 {
}
movieClip 1809 {
}
movieClip 1811 {
}
movieClip 1813 {
}
movieClip 1815 {
}
movieClip 1817 {
}
movieClip 1819 {
}
movieClip 1821 {
}
movieClip 1823 {
}
movieClip 1825 {
}
movieClip 1826 {
}
movieClip 1828 {
}
movieClip 1829 {
}
movieClip 1844 {
}
movieClip 1847 screen8 {
frame 1 {
girl.head.gotoAndStop(3);
}
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 25 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 31 {
stop();
_root.gotoScreen('screen9');
}
}
movieClip 1852 {
}
movieClip 1855 {
}
movieClip 1857 {
}
movieClip 1859 {
}
movieClip 1861 {
}
movieClip 1863 {
}
movieClip 1865 {
}
movieClip 1867 {
}
movieClip 1869 {
}
movieClip 1872 {
}
movieClip 1874 {
}
movieClip 1876 {
}
movieClip 1878 {
}
movieClip 1880 {
}
movieClip 1885 {
}
movieClip 1888 {
}
movieClip 1891 {
}
movieClip 1893 {
}
movieClip 1895 {
}
movieClip 1900 {
}
movieClip 1903 {
}
movieClip 1913 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 35 {
randomHold();
}
frame 69 {
randomHold();
}
}
movieClip 1916 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 64 {
randomHold();
}
frame 139 {
randomHold();
}
}
movieClip 1919 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 100 {
randomHold();
}
frame 200 {
randomHold();
}
}
movieClip 1921 {
}
movieClip 1926 {
}
movieClip 1934 {
}
movieClip 1943 {
}
movieClip 1945 {
}
movieClip 1966 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 28 {
randomHold();
}
frame 55 {
randomHold();
}
}
movieClip 2002 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 25 {
randomHold();
}
frame 49 {
randomHold();
}
}
movieClip 2004 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 120 {
randomHold();
}
}
movieClip 2014 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 17 {
randomHold();
}
frame 33 {
randomHold();
}
}
movieClip 2015 {
}
movieClip 2016 {
frame 1 {
stop();
}
}
movieClip 2018 {
}
movieClip 2020 {
}
movieClip 2022 {
}
movieClip 2023 {
}
movieClip 2025 {
}
movieClip 2027 {
}
movieClip 2031 {
}
movieClip 2033 {
}
movieClip 2035 {
}
movieClip 2037 {
}
movieClip 2039 {
}
movieClip 2041 {
}
movieClip 2044 {
}
movieClip 2052 {
}
movieClip 2054 {
}
movieClip 2056 {
}
movieClip 2058 {
}
movieClip 2060 {
}
movieClip 2062 {
}
movieClip 2064 {
}
movieClip 2066 {
}
movieClip 2068 {
}
movieClip 2070 {
}
movieClip 2072 {
}
movieClip 2074 {
}
movieClip 2076 {
}
movieClip 2078 {
}
movieClip 2080 {
}
movieClip 2082 {
}
movieClip 2086 {
}
movieClip 2089 {
}
movieClip 2093 {
}
movieClip 2095 {
}
movieClip 2097 {
}
movieClip 2099 {
}
movieClip 2101 {
}
movieClip 2103 {
}
movieClip 2105 {
}
movieClip 2107 {
}
movieClip 2109 {
}
movieClip 2112 {
}
movieClip 2114 {
}
movieClip 2116 {
}
movieClip 2118 {
}
movieClip 2120 {
}
movieClip 2122 {
}
movieClip 2125 {
}
movieClip 2127 {
}
movieClip 2129 {
}
movieClip 2131 {
}
movieClip 2133 {
}
movieClip 2135 {
}
movieClip 2137 {
}
movieClip 2139 {
}
movieClip 2160 {
}
movieClip 2161 {
frame 1 {
stop();
}
frame 20 {
stop();
}
frame 40 {
gotoAndStop(1);
}
}
movieClip 2174 {
}
movieClip 2175 {
}
movieClip 2176 {
frame 1 {
function changeValue(d_value) {
value += d_value;
if (value >= 1) {
value = 1;
_parent.onBarFilled();
}
stripe._x = -(1 - value) * stripe._width;
}
var value = 0;
changeValue(0);
}
}
movieClip 2177 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
cum_btn._visible = true;
}
btn_manually._visible = false;
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 0;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_visible = false;
_parent.play();
};
}
}
movieClip 2181 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 2183 screen9 {
frame 1 {
stop();
var varZoom = false;
zoom_btn.onPress = function () {
if (varZoom == false) {
zoom.gotoAndPlay(2);
zoom_btn.gotoAndStop(2);
varZoom = true;
} else {
zoom.gotoAndPlay(21);
zoom_btn.gotoAndStop(1);
varZoom = false;
}
};
anim_manager = new AnimManager(zoom.act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 45, 'frame_end': 75, 'auto_speed': 0.04, 'face_settings': 'head=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.06, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, 'face_settings': 'head=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head=4'});
anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 200, 'pixel_width': 150, 'face_settings': 'head=2'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'head=4', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head=1'});
anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
frame 2 {
stop();
_root.gotoScreen('screen10');
}
}
movieClip 2184 {
}
movieClip 2186 {
}
movieClip 2188 {
}
movieClip 2190 {
}
movieClip 2192 {
}
movieClip 2194 {
}
movieClip 2196 {
}
movieClip 2198 {
}
movieClip 2200 {
}
movieClip 2202 {
}
movieClip 2204 {
}
movieClip 2206 {
}
movieClip 2208 {
}
movieClip 2210 {
}
movieClip 2212 {
}
movieClip 2214 {
}
movieClip 2217 {
}
movieClip 2230 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 30 {
randomHold();
}
frame 59 {
randomHold();
}
}
movieClip 2232 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 100 {
randomHold();
}
frame 200 {
randomHold();
}
}
movieClip 2235 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 60 {
randomHold();
}
frame 120 {
randomHold();
}
}
movieClip 2238 {
}
movieClip 2240 {
}
movieClip 2249 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 25 {
randomHold();
}
frame 49 {
randomHold();
}
}
movieClip 2272 {
frame 1 {
randomHold = function () {
gotoAndPlay('hold' + (random(2) + 1));
};
}
frame 21 {
randomHold();
}
frame 41 {
randomHold();
}
}
movieClip 2284 {
}
movieClip 2285 {
}
movieClip 2286 {
frame 1 {
stop();
}
}
movieClip 2288 {
}
movieClip 2290 {
}
movieClip 2292 {
}
movieClip 2294 {
}
movieClip 2296 {
}
movieClip 2298 {
}
movieClip 2300 {
}
movieClip 2304 {
}
movieClip 2306 {
}
movieClip 2308 {
}
movieClip 2310 {
}
movieClip 2312 {
}
movieClip 2314 {
}
movieClip 2317 {
}
movieClip 2319 {
}
movieClip 2321 {
}
movieClip 2324 {
}
movieClip 2326 {
}
movieClip 2328 {
}
movieClip 2330 {
}
movieClip 2332 {
}
movieClip 2334 {
}
movieClip 2336 {
}
movieClip 2340 {
}
movieClip 2342 {
}
movieClip 2345 {
}
movieClip 2347 {
}
movieClip 2349 {
}
movieClip 2351 {
}
movieClip 2353 {
}
movieClip 2355 {
}
movieClip 2357 {
}
movieClip 2359 {
}
movieClip 2361 {
}
movieClip 2363 {
}
movieClip 2365 {
}
movieClip 2367 {
}
movieClip 2370 {
}
movieClip 2372 {
}
movieClip 2374 {
}
movieClip 2378 {
}
movieClip 2380 {
}
movieClip 2382 {
}
movieClip 2389 {
}
movieClip 2392 {
}
movieClip 2397 {
}
movieClip 2398 {
frame 1 {
stop();
}
}
movieClip 2400 {
}
movieClip 2402 {
}
movieClip 2404 {
}
movieClip 2406 {
}
movieClip 2409 {
}
movieClip 2411 {
}
movieClip 2413 {
}
movieClip 2415 {
}
movieClip 2417 {
frame 1 {
_alpha = 0;
}
}
movieClip 2434 {
}
movieClip 2458 {
frame 1 {
stop();
}
frame 115 {
stop();
}
}
movieClip 2462 {
}
movieClip 2463 {
frame 1 {
stop();
}
frame 20 {
stop();
}
frame 40 {
gotoAndStop(1);
}
}
movieClip 2468 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
cum_btn._visible = true;
}
btn_manually._visible = false;
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 0;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_visible = false;
_parent.play();
};
}
}
movieClip 2477 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 2478 {
}
movieClip 2479 {
}
movieClip 2481 screen10 {
frame 1 {
panel._visible = false;
var varZoom = false;
zoom_btn.onPress = function () {
if (varZoom == false) {
zoom.gotoAndPlay(2);
zoom_btn.gotoAndStop(2);
varZoom = true;
} else {
zoom.gotoAndPlay(21);
zoom_btn.gotoAndStop(1);
varZoom = false;
}
};
anim_manager = new AnimManager(zoom.act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 45, 'frame_end': 75, 'auto_speed': 0.04, 'face_settings': 'head1=1,head2=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.06, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.12, 'face_settings': 'head1=3,head2=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head1=4,head2=4'});
anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.HORIZONTAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 220, 'pixel_width': 200, 'face_settings': 'head1=2,head2=2'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'head1=3,head2=3', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head1=2,head2=2'});
anim_manager.AddSwing({'clip_name': 'boob1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'boob2', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'head2.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
frame 30 {
stop();
panel._visible = true;
}
frame 333 {
stop();
_root.gotoScreen('screen11');
}
}
movieClip 2497 {
}
movieClip 2498 {
frame 50 {
stop();
_parent.again_btn._visible = true;
}
}
movieClip 2499 screen11 {
frame 90 {
stop();
again_btn.onPress = function () {
again_btn.onPress = null;
_root.gotoScreen('mainmenu');
};
again_btn._visible = false;
moregames.onPress = function () {
getURL('http://gamesofdesire.com/', '_blank');
};
}
}
movieClip 2500 screens {
}
frame 3 {
function setScreen(clip_name) {
if (screen != undefined) {
removeMovieClip(screen);
}
attachMovie(clip_name, 'screen', 0);
}
function gotoScreen(clip_name) {
if (trans != undefined) {
removeMovieClip(trans);
}
(attachMovie('trans_screen', 'trans', 1)).next_screen = clip_name;
}
function playSound(snd_name) {
trace(snd_name);
snd = new Sound();
snd.attachSound(snd_name);
snd.start();
delete snd;
}
setScreen('mainmenu');
}