STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228117
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/77049244?noj=FRM77049244-11DC" width="1" height="1"></div>

Robot Flipper.swf

This is the info page for
Flash #12904

(Click the ID number above for more basic data on this flash file.)


Text
Time: 60

Escaped:

0

Score:

0

Robot Controller

Game
Over

ActionScript [AS1/AS2]

Frame 1
function gameOver() { gotoAndStop (21); } function stopRobot(number) { _root["robot" + number]._x = 540; _root["robot" + number]._y = 50; _root["robot" + number].stopped = true; _root["robot" + number].busy = false; if (_root["robot" + number].put_behind) { _root["robot" + number].swapDepths(_root["holder" + number]); } _root.number_on_screen--; tellTarget (_root["robot" + number]) { gotoAndPlay ("left"); }; } walk_speed = 1; time_added = 5; score_increase = 10; slap1 = new Sound(); slap1.attachSound("slap1"); step1 = new Sound(); step1.attachSound("step1"); creak = new Sound(); creak.attachSound("creak"); click = new Sound(); click.attachSound("click"); flip_noise = new Sound(); flip_noise.attachSound("flip_noise"); swish1 = new Sound(); swish1.attachSound("swish1"); robot_waa = new Sound(); robot_waa.attachSound("robot_waa"); score = 0;
Instance of Symbol 18 MovieClip "timer_clip" in Frame 1
onClipEvent (load) { total_time = 60; } onClipEvent (enterFrame) { time_elapsed = getTimer(); time_elapsed = time_elapsed / 1000; time_elapsed = Math.floor(time_elapsed); countdown = (total_time - time_elapsed) - reset_number; this.timer = ["Time " + countdown]; if (countdown < 1) { _root.gameOver(); } }
Instance of Symbol 21 MovieClip in Frame 1
onClipEvent (enterFrame) { this.escaped = _root.escaped; }
Instance of Symbol 25 MovieClip in Frame 1
onClipEvent (enterFrame) { this.score = _root.score; }
Instance of Symbol 58 MovieClip in Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("hidden"); }; } onClipEvent (enterFrame) { counter++; if (_root.timeline == 72) { tellTarget (this) { gotoAndPlay ("explode"); }; } }
Instance of Symbol 90 MovieClip in Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("still"); }; } onClipEvent (enterFrame) { if (_root.timeline == 75) { tellTarget (this) { gotoAndPlay ("roll"); }; } }
Instance of Symbol 100 MovieClip "flipper" in Frame 1
onClipEvent (load) { angle_decrease = 1; start_angle = angle_decrease; _root.start_angle = 45; _root.angle = _root.start_angle; this._rotation = this._rotation + _root.angle; allowed_to_press = true; } onClipEvent (enterFrame) { if ((allowed_to_press && (Key.isDown(32))) && (_root.angle >= 1)) { if (!creak_started) { creak_started = true; _root.creak.start(); } _root.angle = _root.angle - angle_decrease; this._rotation = this._rotation - angle_decrease; if (angle_decrease >= 0.4) { angle_decrease = angle_decrease - 0.015; } compressed = true; if ((3 >= _root.angle) && (!clicked)) { _root.click.start(); clicked = true; } } hypothenuse = 80; radians = (_root.angle / 180) * Math.PI; _root.adjacent = Math.cos(radians) * hypothenuse; if ((!Key.isDown(32)) && (compressed)) { if (!flip_sound) { flip_sound = true; _root.creak.stop(); _root.swish1.start(); if (_root.robot_on_flipper) { _root.slap1.start(); } } flipping = true; angle_decrease = start_angle; if (!done) { done = true; outside_angle = _root.start_angle - _root.angle; if ((outside_angle >= 1) && (15 >= outside_angle)) { bend_reaction = 1; } else if ((outside_angle >= 16) && (30 >= outside_angle)) { bend_reaction = 2; } else if ((outside_angle >= 31) && (45 >= outside_angle)) { bend_reaction = 3; } fragment = outside_angle / 3; _root.flip = true; } } if (flipping) { allowed_to_press = false; this._rotation = this._rotation + fragment; num++; if (num == 3) { if (bend_reaction == 1) { tellTarget (this) { gotoAndPlay ("small"); }; } else if (bend_reaction == 2) { tellTarget (this) { gotoAndPlay ("mild"); }; } else if (bend_reaction == 3) { tellTarget (this) { gotoAndPlay ("severe"); }; } num = 0; allowed_to_press = true; _root.angle = _root.start_angle; compressed = false; done = false; _root.flip = false; flipping = false; creak_started = false; flip_sound = false; clicked = false; } } }
Instance of Symbol 154 MovieClip in Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("stop"); }; } onClipEvent (enterFrame) { counter++; if (_root.timeline == 48) { tellTarget (this) { gotoAndPlay ("yawn"); }; } }
Instance of Symbol 562 MovieClip "robot1" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 1; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 562 MovieClip "robot2" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 2; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 562 MovieClip "robot3" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 3; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 562 MovieClip "robot4" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 4; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 562 MovieClip "robot5" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 5; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 562 MovieClip "robot1" in Frame 1
onClipEvent (load) { function pickDive() { random_dive = Math.floor((Math.random() * 4) + 1); if (!picked_dive) { picked_dive = true; if (random_dive == 1) { tellTarget (this) { gotoAndPlay ("dive1"); }; } else if (random_dive == 2) { tellTarget (this) { gotoAndPlay ("dive2"); }; } else if (random_dive == 3) { tellTarget (this) { gotoAndPlay ("dive3"); }; } else if (random_dive == 4) { tellTarget (this) { gotoAndPlay ("dive4"); }; } enter_box = true; } } function stopFall() { fall = false; gravity = 0; flying = false; fired = false; velovity = 0; this._y = start_y; } x_velocity = 10; this_robot = 6; stopped = true; direction = "left"; floor_level = 339; this._y = floor_level - this._height; start_y = this._y; gravity = 0; on_ground = true; } onClipEvent (enterFrame) { walk_speed = _root.walk_speed; if (!stopped) { if (this._x >= 560) { _root.stopRobot(this_robot); } if (40 >= this._x) { tellTarget (this) { gotoAndPlay ("insult"); }; } if ((!flying) && (!on_ground)) { fall = true; } if (flying) { random_flying_number = Math.floor((Math.random() * 4) + 1); if (!picked_flight) { picked_flight = true; flight_picked = random_flying_number; if (random_flying_number == 1) { tellTarget (this) { gotoAndPlay ("flying1"); }; } else if (random_flying_number == 2) { tellTarget (this) { gotoAndPlay ("flying2"); }; } else if (random_flying_number == 3) { tellTarget (this) { gotoAndPlay ("flying3"); }; } else if (random_flying_number == 4) { tellTarget (this) { gotoAndPlay ("flying4"); }; } } direction = "right"; if (!enter_box) { this._y = this._y - velocity; this._x = this._x + x_velocity; velocity = velocity - 1.6; } if (0 >= velocity) { if (!set_fall) { set_fall = true; if (this.r1.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r2.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r3.hitTest(_root.invisible)) { pickDive(); enter_box = true; } if (this.r4.hitTest(_root.invisible)) { pickDive(); enter_box = true; } } } if (enter_box && (random_dive != 4)) { this._y = this._y + gravity; gravity = gravity + 0.5; this._x = this._x + x_velocity; x_velocity = 4.5 - num; num = num + 0.04; } if (enter_box && (random_dive == 4)) { this._y = this._y + 1; if (350 >= this._x) { this._x = this._x + 1.1; } num = num + 0.04; } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); if (!landed) { landed = true; bouncing = true; random_land = Math.floor((Math.random() * 3) + 1); if (random_land == 1) { tellTarget (this) { gotoAndPlay ("land1"); }; } else if (random_land == 2) { tellTarget (this) { gotoAndPlay ("land2"); }; } else if (random_land == 3) { tellTarget (this) { gotoAndPlay ("land3"); }; } } } if (_root.box_sensor.hitTest(this._x, this._y, true)) { if (90 >= this._y) { if (!put_behind) { put_behind = true; this.swapDepths(_root["holder" + this_robot]); tellTarget (_root.box.box_light) { gotoAndPlay ("light"); }; if (random_dive != 4) { tellTarget (_root.box) { gotoAndPlay ("Shake"); }; } _root.score = _root.score + _root.score_increase; finished = true; _root.timer_clip.total_time = _root.timer_clip.total_time + _root.time_added; } } } if (finished && (200 < this._y)) { _root.stopRobot(this_robot); } if ((finished && (this._y >= 150)) && (random_dive == 2)) { if (!splashed) { splashed = true; stopFall(); tellTarget (this) { gotoAndPlay ("splash"); }; this._y = 130; } } } if (power_flip) { fall = false; if (!power_flipped) { power_flipped = true; this._x = 60; this._y = floor_level - 40; tellTarget (this) { gotoAndPlay ("power"); }; } } if (((this._y + gravity) + 50) >= floor_level) { stopFall(); on_ground = true; fall = false; } if (fall && (!enter_box)) { if (!in_range) { this._y = this._y + gravity; gravity = gravity + 1.6; } } if (((((!flying) && (!land)) && (!bouncing)) && (!finished)) && (!power_flip)) { if (direction == "left") { tellTarget (this) { gotoAndPlay ("left"); }; this._x = this._x - walk_speed; } else if (direction == "right") { this._x = this._x + walk_speed; tellTarget (this) { gotoAndPlay ("right"); }; } } if ((((!flying) && (!power_flip)) && (this._x >= (_root.flipper._x - _root.adjacent))) && (_root.flipper._x >= this._x)) { in_range = true; _root.robot_on_flipper = true; } else { in_range = false; _root.robot_on_flipper = false; } if ((direction == "left") && (1 < _root.angle)) { if (in_range) { on_ground = false; from_pivot = _root.flipper._x - this._x; angle = _root.angle; angleb = (angle / 180) * Math.PI; opposite_side = Math.tan(angleb) * from_pivot; this._y = Math.floor((_root.flipper._y - opposite_side) - this._height); } } if (1 >= _root.angle) { this._y = floor_level - 50; } if ((direction == "right") && (1 < _root.angle)) { cancel_flip = true; } else { cancel_flip = false; } if (_root.flip && (in_range)) { if ((!fired) && (!cancel_flip)) { fired = true; from_pivot = _root.flipper._x - this._x; my_angle = _root.start_angle - _root.angle; velocity = my_angle / 1.4; adj_perc = (from_pivot / (_root.adjacent - 10)) * 100; velocity = (velocity / 100) * adj_perc; velocity = velocity * 1.4; flying = true; fall = false; if (velocity >= 45) { power_flip = true; flying = false; } } } if ((-30 >= _x) && (direction == "left")) { _root.stopRobot(this_robot); _root.escaped++; _root.timer_clip.total_time = _root.timer_clip.total_time - 5; } } }
Instance of Symbol 605 MovieClip in Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("stop"); }; } onClipEvent (enterFrame) { counter++; if (_root.timeline == 60) { tellTarget (this) { gotoAndPlay ("peep"); }; } }
Instance of Symbol 636 MovieClip in Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("still"); }; } onClipEvent (enterFrame) { if (_root.timeline == 24) { tellTarget (this) { gotoAndPlay ("enter"); }; } }
Instance of Symbol 650 MovieClip "star" in Frame 1
onClipEvent (load) { _root.trail_counter = 1; _root.star_grow = 5; } onClipEvent (enterFrame) { if (_root.timeline == 12) { tellTarget (this) { gotoAndPlay ("enter"); }; } }
Instance of Symbol 656 MovieClip in Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { this._visible = true; if (_root.timeline == 82) { tellTarget (this) { gotoAndPlay ("enter"); }; } }
Instance of Symbol 659 MovieClip in Frame 1
onClipEvent (load) { function addRobot(which) { _root["robot" + which].busy = true; _root["robot" + which]._y = _root.robot1.start_y; _root["robot" + which]._x = 550; _root["robot" + which].flying = false; _root["robot" + which].direction = "left"; _root["robot" + which].bouncing = false; _root["robot" + which].picked_flight = false; _root["robot" + which].landed = false; _root["robot" + which].enter_box = false; _root["robot" + which].stopped = false; _root["robot" + which].gotoAndStop("left"); _root["robot" + which].finished = false; _root["robot" + which].x_velocity = 10; _root["robot" + which].put_behind = false; } check_every = 2; robot_chance = 2; } onClipEvent (enterFrame) { if (_root.score == 50) { _root.walk_speed = 1.1; } if (_root.score == 70) { _root.walk_speed = 1.2; } if (_root.score == 100) { _root.walk_speed = 1.4; } if (_root.score == 150) { _root.walk_speed = 1.6; } if (_root.score == 200) { _root.walk_speed = 1.7; } if (_root.score == 220) { _root.walk_speed = 1.8; } if (_root.score == 400) { _root.walk_speed = 1.9; } if (!game_started) { game_started = true; addRobot(1); _root.robot1._x = 350; } if (0 >= _root.number_on_screen) { if (!_root.robot1.busy) { addRobot(1); } } time_elapsed = getTimer(); time_elapsed = time_elapsed / 1000; time_elapsed = Math.floor(time_elapsed); countdown = time_elapsed - reset_number; if (countdown >= check_every) { if (_root.number_on_screen < 6) { trace("There are less than 6 robots on screen"); random_enter = Math.floor((Math.random() * robot_chance) + 1); if (random_enter == 1) { if (!_root.robot1.busy) { addRobot(1); } else if (!_root.robot2.busy) { addRobot(2); } else if (!_root.robot3.busy) { addRobot(3); } else if (!_root.robot4.busy) { addRobot(4); } else if (!_root.robot5.busy) { addRobot(5); } else if (!_root.robot6.busy) { addRobot(6); } trace("add new robot"); } else { trace("don't show one"); } reset_number = time_elapsed; } } }
Frame 10
time_elapsed = getTimer(); time_elapsed = time_elapsed / 1000; time_elapsed = Math.floor(time_elapsed); timeline = time_elapsed - difference; reset_after = 100; if (timeline == reset_after) { timeline = 0; difference = difference + reset_after; }
Frame 20
gotoAndPlay (10);
Frame 30
stop();
Frame 70
stop();
Instance of Symbol 24 MovieClip in Symbol 25 MovieClip Frame 1
onClipEvent (enterFrame) { this.score = _root.score; }
Symbol 39 MovieClip Frame 200
stop();
Symbol 56 MovieClip Frame 32
stop();
Symbol 58 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 14
gotoAndStop (1);
Symbol 100 MovieClip Frame 25
gotoAndStop (1);
Symbol 100 MovieClip Frame 35
gotoAndStop (1);
Symbol 154 MovieClip Frame 1
stop();
Symbol 161 MovieClip Frame 1
_root.box.box_light._visible = false; stop();
Symbol 161 MovieClip Frame 10
_root.box.box_light._visible = true;
Symbol 223 MovieClip Frame 2
this._visible = true;
Symbol 223 MovieClip Frame 341
this._visible = false; _parent.set = false; stop();
Symbol 226 MovieClip Frame 1
stop();
Instance of Symbol 223 MovieClip in Symbol 226 MovieClip Frame 1
onClipEvent (load) { tellTarget (this) { gotoAndStop ("stop"); }; } onClipEvent (enterFrame) { if ((_root.timeline == 3) && (!set)) { set = true; this._visible = true; random_number = Math.floor((Math.random() * -76) + -16); this._x = random_number; trace(random_number); tellTarget (this) { gotoAndPlay ("peep"); }; } }
Symbol 324 MovieClip Frame 104
_parent.swapDepths(_root.flipper);
Symbol 324 MovieClip Frame 140
stop();
Symbol 338 MovieClip Frame 25
stop();
Symbol 345 MovieClip Frame 11
stop();
Symbol 353 MovieClip Frame 16
stop();
Symbol 353 MovieClip Frame 17
our_flight = _parent.flight_picked; if (our_flight == 1) { gotoAndPlay (41); } else if (our_flight == 2) { gotoAndPlay (1); }
Symbol 353 MovieClip Frame 40
stop();
Symbol 353 MovieClip Frame 56
stop();
Symbol 364 MovieClip Frame 15
stop();
Symbol 502 MovieClip Frame 154
_parent._x = _parent._x + 173; _parent.flying = false; _parent.direction = "left"; _parent.bouncing = false; _parent.picked_flight = false; _parent.landed = false; _parent.gotoAndStop("left");
Symbol 530 MovieClip Frame 137
_parent._x = _parent._x + 173; _parent.flying = false; _parent.direction = "left"; _parent.bouncing = false; _parent.picked_flight = false; _parent.landed = false; _parent.gotoAndStop("left");
Symbol 532 MovieClip Frame 59
_parent._x = _parent._x + 173; _parent.flying = false; _parent.direction = "left"; _parent.bouncing = false; _parent.picked_flight = false; _parent.landed = false; _parent.gotoAndStop("left");
Symbol 559 MovieClip Frame 74
_parent._x = _parent._x + 240; _parent.flying = false; _parent.direction = "left"; _parent.bouncing = false; _parent.picked_flight = false; _parent.landed = false; _parent.gotoAndStop("left");
Symbol 562 MovieClip Frame 1
stop();
Symbol 562 MovieClip Frame 10
stop();
Symbol 562 MovieClip Frame 20
stop();
Symbol 562 MovieClip Frame 30
stop();
Instance of Symbol 262 MovieClip in Symbol 562 MovieClip Frame 30
onClipEvent (enterFrame) { this._rotation = this._rotation + 1.5; }
Symbol 562 MovieClip Frame 49
stop();
Symbol 562 MovieClip Frame 50
stop();
Instance of Symbol 280 MovieClip in Symbol 562 MovieClip Frame 50
onClipEvent (enterFrame) { this._rotation = this._rotation + 2; }
Symbol 562 MovieClip Frame 62
this.swapDepths(_root.flipper);
Symbol 562 MovieClip Frame 72
stop();
Symbol 562 MovieClip Frame 83
stop();
Symbol 562 MovieClip Frame 104
stop();
Symbol 562 MovieClip Frame 116
stop();
Instance of Symbol 365 MovieClip in Symbol 562 MovieClip Frame 117
onClipEvent (enterFrame) { if (turned < 300) { this._rotation = this._rotation + 1.3; turned++; } }
Symbol 562 MovieClip Frame 131
stop();
Symbol 562 MovieClip Frame 141
stop();
Symbol 562 MovieClip Frame 288
stop();
Symbol 562 MovieClip Frame 300
stop();
Symbol 562 MovieClip Frame 311
stop();
Symbol 562 MovieClip Frame 312
stop();
Symbol 605 MovieClip Frame 255
stop();
Symbol 636 MovieClip Frame 1
stop();
Symbol 650 MovieClip Frame 1
stop();
Instance of Symbol 647 MovieClip "trails" in Symbol 650 MovieClip Frame 1
onClipEvent (enterFrame) { grown++; if (grown < 20) { this._alpha = this._alpha - 5; this._xscale = this._xscale + star_grow; this._yscale = this._yscale + star_grow; } }
Instance of Symbol 649 MovieClip "shooting" in Symbol 650 MovieClip Frame 11
onClipEvent (enterFrame) { _root.trail_counter++; num = _root.trail_counter; duplicateMovieClip (_root.star.trails, "trail" + num, num); _root.star["trail" + num]._x = this._x; _root.star["trail" + num]._y = this._y; _root.star["trail" + num]._alpha = 100; _root.star["trail" + num].star_grow = _root.star_grow; if (_root.star_grow >= 0) { _root.star_grow = _root.star_grow - 0.4; } }
Instance of Symbol 654 MovieClip in Symbol 655 MovieClip Frame 1
onClipEvent (enterFrame) { grown++; if (grown < 20) { this._xscale = this._xscale + 5; this._yscale = this._yscale + 5; this._alpha = this._alpha - 5; } }
Symbol 656 MovieClip Frame 1
stop();

Library Items

Symbol 1 Sound [bounce_sound]
Symbol 2 Sound [swish1]
Symbol 3 Sound [step1]
Symbol 4 Sound [slap1]
Symbol 5 Sound [flip_noise]
Symbol 6 Sound [creak]
Symbol 7 Sound [click]
Symbol 8 Sound [swish]Used by:562
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:13
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:13  Timeline
Symbol 13 MovieClipUses:10 12Used by:Timeline
Symbol 14 BitmapUsed by:15
Symbol 15 GraphicUses:14Used by:Timeline
Symbol 16 FontUsed by:17 19 20 22 23 658 661
Symbol 17 EditableTextUses:16Used by:18
Symbol 18 MovieClipUses:17Used by:Timeline
Symbol 19 TextUses:16Used by:21
Symbol 20 EditableTextUses:16Used by:21
Symbol 21 MovieClipUses:19 20Used by:Timeline
Symbol 22 TextUses:16Used by:25
Symbol 23 EditableTextUses:16Used by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:22 24Used by:Timeline
Symbol 26 GraphicUsed by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:58
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:29 30Used by:58
Symbol 32 GraphicUsed by:36
Symbol 33 GraphicUsed by:36
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:32 33 34 35Used by:58
Symbol 37 ShapeTweeningUsed by:39
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:37 38Used by:58
Symbol 40 GraphicUsed by:56
Symbol 41 GraphicUsed by:56
Symbol 42 GraphicUsed by:56
Symbol 43 GraphicUsed by:56
Symbol 44 GraphicUsed by:56
Symbol 45 GraphicUsed by:56
Symbol 46 GraphicUsed by:56
Symbol 47 GraphicUsed by:56
Symbol 48 GraphicUsed by:56
Symbol 49 GraphicUsed by:56
Symbol 50 GraphicUsed by:56
Symbol 51 GraphicUsed by:56
Symbol 52 GraphicUsed by:56
Symbol 53 GraphicUsed by:56
Symbol 54 GraphicUsed by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55Used by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:28 31 36 39 56 57Used by:Timeline
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:Timeline
Symbol 61 GraphicUsed by:65
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:65
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:61 63 64Used by:Timeline
Symbol 66 GraphicUsed by:90
Symbol 67 GraphicUsed by:90
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:90
Symbol 70 GraphicUsed by:90
Symbol 71 GraphicUsed by:90
Symbol 72 GraphicUsed by:90
Symbol 73 GraphicUsed by:90
Symbol 74 GraphicUsed by:90
Symbol 75 GraphicUsed by:90
Symbol 76 GraphicUsed by:90
Symbol 77 GraphicUsed by:90
Symbol 78 GraphicUsed by:90
Symbol 79 GraphicUsed by:90
Symbol 80 GraphicUsed by:90
Symbol 81 GraphicUsed by:90
Symbol 82 GraphicUsed by:90
Symbol 83 GraphicUsed by:90
Symbol 84 GraphicUsed by:90
Symbol 85 GraphicUsed by:90
Symbol 86 GraphicUsed by:90
Symbol 87 GraphicUsed by:90
Symbol 88 GraphicUsed by:90
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89Used by:Timeline
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:Timeline
Symbol 93 GraphicUsed by:100
Symbol 94 GraphicUsed by:100
Symbol 95 GraphicUsed by:100
Symbol 96 GraphicUsed by:100
Symbol 97 GraphicUsed by:100
Symbol 98 GraphicUsed by:100
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:93 94 95 96 97 98 99Used by:Timeline
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:154
Symbol 103 GraphicUsed by:154
Symbol 104 GraphicUsed by:154
Symbol 105 GraphicUsed by:154
Symbol 106 GraphicUsed by:154
Symbol 107 GraphicUsed by:154
Symbol 108 GraphicUsed by:154
Symbol 109 GraphicUsed by:154
Symbol 110 GraphicUsed by:154
Symbol 111 GraphicUsed by:154
Symbol 112 GraphicUsed by:154
Symbol 113 GraphicUsed by:154
Symbol 114 GraphicUsed by:154
Symbol 115 GraphicUsed by:154
Symbol 116 GraphicUsed by:154
Symbol 117 GraphicUsed by:154
Symbol 118 GraphicUsed by:154
Symbol 119 GraphicUsed by:154
Symbol 120 GraphicUsed by:154
Symbol 121 GraphicUsed by:154
Symbol 122 GraphicUsed by:154
Symbol 123 GraphicUsed by:154
Symbol 124 GraphicUsed by:154
Symbol 125 GraphicUsed by:154
Symbol 126 GraphicUsed by:154
Symbol 127 GraphicUsed by:154
Symbol 128 GraphicUsed by:154
Symbol 129 GraphicUsed by:154
Symbol 130 GraphicUsed by:154
Symbol 131 GraphicUsed by:154
Symbol 132 GraphicUsed by:154
Symbol 133 GraphicUsed by:154
Symbol 134 GraphicUsed by:154
Symbol 135 GraphicUsed by:154
Symbol 136 GraphicUsed by:154
Symbol 137 GraphicUsed by:154
Symbol 138 GraphicUsed by:154
Symbol 139 GraphicUsed by:154
Symbol 140 GraphicUsed by:154
Symbol 141 GraphicUsed by:154
Symbol 142 GraphicUsed by:154
Symbol 143 GraphicUsed by:154
Symbol 144 GraphicUsed by:154
Symbol 145 GraphicUsed by:154
Symbol 146 GraphicUsed by:154
Symbol 147 GraphicUsed by:154
Symbol 148 GraphicUsed by:154
Symbol 149 GraphicUsed by:154
Symbol 150 GraphicUsed by:154
Symbol 151 GraphicUsed by:154
Symbol 152 GraphicUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153Used by:Timeline
Symbol 155 BitmapUsed by:156
Symbol 156 GraphicUses:155Used by:Timeline
Symbol 157 GraphicUsed by:Timeline
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:161
Symbol 160 SoundUsed by:161
Symbol 161 MovieClipUses:159 160Used by:226
Symbol 162 BitmapUsed by:163 224
Symbol 163 GraphicUses:162Used by:226
Symbol 164 GraphicUsed by:223
Symbol 165 GraphicUsed by:223
Symbol 166 GraphicUsed by:223
Symbol 167 GraphicUsed by:223
Symbol 168 GraphicUsed by:223
Symbol 169 GraphicUsed by:223
Symbol 170 GraphicUsed by:223
Symbol 171 GraphicUsed by:223
Symbol 172 GraphicUsed by:223
Symbol 173 GraphicUsed by:223
Symbol 174 GraphicUsed by:223
Symbol 175 GraphicUsed by:223
Symbol 176 GraphicUsed by:223
Symbol 177 GraphicUsed by:223
Symbol 178 GraphicUsed by:223
Symbol 179 GraphicUsed by:223
Symbol 180 GraphicUsed by:223
Symbol 181 GraphicUsed by:223
Symbol 182 GraphicUsed by:223
Symbol 183 GraphicUsed by:223
Symbol 184 GraphicUsed by:223
Symbol 185 GraphicUsed by:223
Symbol 186 GraphicUsed by:223
Symbol 187 GraphicUsed by:223
Symbol 188 GraphicUsed by:223
Symbol 189 GraphicUsed by:223
Symbol 190 GraphicUsed by:223
Symbol 191 GraphicUsed by:223
Symbol 192 GraphicUsed by:223
Symbol 193 GraphicUsed by:223
Symbol 194 GraphicUsed by:223
Symbol 195 GraphicUsed by:223
Symbol 196 GraphicUsed by:223
Symbol 197 GraphicUsed by:223
Symbol 198 GraphicUsed by:223
Symbol 199 GraphicUsed by:223
Symbol 200 GraphicUsed by:223
Symbol 201 GraphicUsed by:223
Symbol 202 GraphicUsed by:223
Symbol 203 GraphicUsed by:223
Symbol 204 GraphicUsed by:223
Symbol 205 GraphicUsed by:223
Symbol 206 GraphicUsed by:223
Symbol 207 GraphicUsed by:223
Symbol 208 GraphicUsed by:223
Symbol 209 GraphicUsed by:223
Symbol 210 GraphicUsed by:223
Symbol 211 GraphicUsed by:223
Symbol 212 GraphicUsed by:223
Symbol 213 GraphicUsed by:223
Symbol 214 GraphicUsed by:223
Symbol 215 GraphicUsed by:223
Symbol 216 GraphicUsed by:223
Symbol 217 GraphicUsed by:223
Symbol 218 GraphicUsed by:223
Symbol 219 GraphicUsed by:223
Symbol 220 GraphicUsed by:223
Symbol 221 GraphicUsed by:223
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222Used by:226
Symbol 224 GraphicUses:162Used by:225
Symbol 225 MovieClipUses:224Used by:226
Symbol 226 MovieClipUses:161 163 223 225Used by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:Timeline
Symbol 230 GraphicUsed by:246
Symbol 231 GraphicUsed by:246
Symbol 232 GraphicUsed by:246
Symbol 233 GraphicUsed by:246
Symbol 234 GraphicUsed by:246
Symbol 235 GraphicUsed by:246
Symbol 236 GraphicUsed by:246
Symbol 237 GraphicUsed by:246
Symbol 238 GraphicUsed by:246
Symbol 239 GraphicUsed by:246
Symbol 240 GraphicUsed by:246
Symbol 241 GraphicUsed by:246
Symbol 242 GraphicUsed by:246
Symbol 243 GraphicUsed by:246
Symbol 244 GraphicUsed by:246
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245Used by:562
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:562
Symbol 249 GraphicUsed by:257
Symbol 250 GraphicUsed by:257
Symbol 251 GraphicUsed by:257
Symbol 252 GraphicUsed by:257
Symbol 253 GraphicUsed by:257
Symbol 254 GraphicUsed by:257
Symbol 255 GraphicUsed by:257
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:249 250 251 252 253 254 255 256Used by:562
Symbol 258 GraphicUsed by:262
Symbol 259 GraphicUsed by:262
Symbol 260 GraphicUsed by:262
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:258 259 260 261Used by:562
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263Used by:265
Symbol 265 MovieClipUses:264Used by:532 562
Symbol 266 GraphicUsed by:280
Symbol 267 GraphicUsed by:280
Symbol 268 GraphicUsed by:280
Symbol 269 GraphicUsed by:280
Symbol 270 GraphicUsed by:280
Symbol 271 GraphicUsed by:280
Symbol 272 GraphicUsed by:280
Symbol 273 GraphicUsed by:280
Symbol 274 GraphicUsed by:280
Symbol 275 GraphicUsed by:280
Symbol 276 GraphicUsed by:280
Symbol 277 GraphicUsed by:280
Symbol 278 GraphicUsed by:280
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:266 267 268 269 270 271 272 273 274 275 276 277 278 279Used by:562
Symbol 281 GraphicUsed by:324
Symbol 282 GraphicUsed by:324
Symbol 283 GraphicUsed by:324
Symbol 284 GraphicUsed by:324
Symbol 285 GraphicUsed by:324
Symbol 286 GraphicUsed by:324
Symbol 287 GraphicUsed by:324
Symbol 288 GraphicUsed by:324
Symbol 289 GraphicUsed by:324
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:324
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:324
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:324
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:324
Symbol 298 ShapeTweeningUsed by:324
Symbol 299 GraphicUsed by:324
Symbol 300 GraphicUsed by:324
Symbol 301 GraphicUsed by:324
Symbol 302 GraphicUsed by:324
Symbol 303 GraphicUsed by:324
Symbol 304 GraphicUsed by:324
Symbol 305 GraphicUsed by:324
Symbol 306 GraphicUsed by:324
Symbol 307 GraphicUsed by:324
Symbol 308 GraphicUsed by:324
Symbol 309 GraphicUsed by:324
Symbol 310 GraphicUsed by:324
Symbol 311 GraphicUsed by:324
Symbol 312 GraphicUsed by:324
Symbol 313 GraphicUsed by:324
Symbol 314 GraphicUsed by:324
Symbol 315 GraphicUsed by:324
Symbol 316 ShapeTweeningUsed by:324
Symbol 317 GraphicUsed by:324
Symbol 318 GraphicUsed by:324
Symbol 319 GraphicUsed by:324
Symbol 320 GraphicUsed by:324
Symbol 321 GraphicUsed by:324
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:324
Symbol 324 MovieClipUses:281 282 283 284 285 286 287 288 289 291 293 295 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 323Used by:562
Symbol 325 GraphicUsed by:338
Symbol 326 GraphicUsed by:338
Symbol 327 GraphicUsed by:338
Symbol 328 GraphicUsed by:338
Symbol 329 GraphicUsed by:338
Symbol 330 GraphicUsed by:338
Symbol 331 GraphicUsed by:338
Symbol 332 GraphicUsed by:338
Symbol 333 GraphicUsed by:338
Symbol 334 GraphicUsed by:338
Symbol 335 GraphicUsed by:338
Symbol 336 GraphicUsed by:338
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:325 326 327 328 329 330 331 332 333 334 335 336 337Used by:562
Symbol 339 GraphicUsed by:345
Symbol 340 GraphicUsed by:345
Symbol 341 GraphicUsed by:345
Symbol 342 GraphicUsed by:345
Symbol 343 GraphicUsed by:345
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:339 340 341 342 343 344Used by:562
Symbol 346 GraphicUsed by:353
Symbol 347 GraphicUsed by:353
Symbol 348 GraphicUsed by:353
Symbol 349 GraphicUsed by:353
Symbol 350 GraphicUsed by:353
Symbol 351 GraphicUsed by:353
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:346 347 348 349 350 351 352Used by:562
Symbol 354 GraphicUsed by:364
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355Used by:364
Symbol 357 GraphicUsed by:364
Symbol 358 GraphicUsed by:364
Symbol 359 GraphicUsed by:364
Symbol 360 GraphicUsed by:364
Symbol 361 GraphicUsed by:364
Symbol 362 GraphicUsed by:364
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:354 356 357 358 359 360 361 362 363Used by:365
Symbol 365 MovieClipUses:364Used by:562
Symbol 366 GraphicUsed by:438
Symbol 367 GraphicUsed by:374
Symbol 368 GraphicUsed by:374
Symbol 369 GraphicUsed by:374
Symbol 370 GraphicUsed by:374
Symbol 371 GraphicUsed by:374
Symbol 372 GraphicUsed by:374
Symbol 373 GraphicUsed by:374
Symbol 374 MovieClipUses:367 368 369 370 371 372 373Used by:438
Symbol 375 GraphicUsed by:438
Symbol 376 GraphicUsed by:381
Symbol 377 ShapeTweeningUsed by:381
Symbol 378 GraphicUsed by:381
Symbol 379 GraphicUsed by:381
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:376 377 378 379 380Used by:438
Symbol 382 GraphicUsed by:438
Symbol 383 GraphicUsed by:438
Symbol 384 GraphicUsed by:438
Symbol 385 GraphicUsed by:438
Symbol 386 GraphicUsed by:438
Symbol 387 GraphicUsed by:438
Symbol 388 GraphicUsed by:438
Symbol 389 GraphicUsed by:438
Symbol 390 GraphicUsed by:438
Symbol 391 GraphicUsed by:438
Symbol 392 GraphicUsed by:438
Symbol 393 GraphicUsed by:438
Symbol 394 GraphicUsed by:438
Symbol 395 GraphicUsed by:438
Symbol 396 GraphicUsed by:438
Symbol 397 GraphicUsed by:438
Symbol 398 GraphicUsed by:438
Symbol 399 GraphicUsed by:438
Symbol 400 GraphicUsed by:438
Symbol 401 GraphicUsed by:438
Symbol 402 GraphicUsed by:438
Symbol 403 GraphicUsed by:438
Symbol 404 GraphicUsed by:438
Symbol 405 GraphicUsed by:438
Symbol 406 GraphicUsed by:438
Symbol 407 GraphicUsed by:438
Symbol 408 GraphicUsed by:438
Symbol 409 GraphicUsed by:438
Symbol 410 GraphicUsed by:438
Symbol 411 GraphicUsed by:438
Symbol 412 GraphicUsed by:438
Symbol 413 GraphicUsed by:438
Symbol 414 GraphicUsed by:438
Symbol 415 GraphicUsed by:438
Symbol 416 GraphicUsed by:438
Symbol 417 GraphicUsed by:438
Symbol 418 GraphicUsed by:438
Symbol 419 GraphicUsed by:438
Symbol 420 GraphicUsed by:438
Symbol 421 GraphicUsed by:438
Symbol 422 GraphicUsed by:438
Symbol 423 GraphicUsed by:438
Symbol 424 GraphicUsed by:438
Symbol 425 GraphicUsed by:438
Symbol 426 GraphicUsed by:438
Symbol 427 GraphicUsed by:438
Symbol 428 GraphicUsed by:438
Symbol 429 GraphicUsed by:438
Symbol 430 GraphicUsed by:438
Symbol 431 GraphicUsed by:438
Symbol 432 GraphicUsed by:438
Symbol 433 GraphicUsed by:438
Symbol 434 GraphicUsed by:438
Symbol 435 GraphicUsed by:438
Symbol 436 GraphicUsed by:438
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:366 374 375 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437Used by:562
Symbol 439 GraphicUsed by:502
Symbol 440 GraphicUsed by:441
Symbol 441 MovieClipUses:440Used by:502 530
Symbol 442 GraphicUsed by:502
Symbol 443 SoundUsed by:502 532 559
Symbol 444 GraphicUsed by:502
Symbol 445 GraphicUsed by:502
Symbol 446 GraphicUsed by:502
Symbol 447 GraphicUsed by:502
Symbol 448 GraphicUsed by:502
Symbol 449 GraphicUsed by:502
Symbol 450 GraphicUsed by:502
Symbol 451 GraphicUsed by:502
Symbol 452 GraphicUsed by:502
Symbol 453 GraphicUsed by:502
Symbol 454 GraphicUsed by:502
Symbol 455 GraphicUsed by:502
Symbol 456 GraphicUsed by:502
Symbol 457 GraphicUsed by:502
Symbol 458 GraphicUsed by:502
Symbol 459 GraphicUsed by:502
Symbol 460 GraphicUsed by:502
Symbol 461 GraphicUsed by:502
Symbol 462 GraphicUsed by:502
Symbol 463 GraphicUsed by:502
Symbol 464 GraphicUsed by:502
Symbol 465 GraphicUsed by:502
Symbol 466 GraphicUsed by:502
Symbol 467 GraphicUsed by:502
Symbol 468 GraphicUsed by:502
Symbol 469 GraphicUsed by:502
Symbol 470 GraphicUsed by:502
Symbol 471 GraphicUsed by:502
Symbol 472 GraphicUsed by:502
Symbol 473 GraphicUsed by:502
Symbol 474 GraphicUsed by:502
Symbol 475 GraphicUsed by:502
Symbol 476 GraphicUsed by:502
Symbol 477 GraphicUsed by:502
Symbol 478 GraphicUsed by:502
Symbol 479 GraphicUsed by:502
Symbol 480 GraphicUsed by:502
Symbol 481 GraphicUsed by:502
Symbol 482 GraphicUsed by:502
Symbol 483 GraphicUsed by:502
Symbol 484 GraphicUsed by:502
Symbol 485 GraphicUsed by:502
Symbol 486 GraphicUsed by:502
Symbol 487 GraphicUsed by:502
Symbol 488 GraphicUsed by:502
Symbol 489 GraphicUsed by:502
Symbol 490 GraphicUsed by:502
Symbol 491 GraphicUsed by:502
Symbol 492 GraphicUsed by:502
Symbol 493 GraphicUsed by:502
Symbol 494 GraphicUsed by:502
Symbol 495 GraphicUsed by:502
Symbol 496 GraphicUsed by:502
Symbol 497 GraphicUsed by:502
Symbol 498 GraphicUsed by:502
Symbol 499 GraphicUsed by:502
Symbol 500 GraphicUsed by:502
Symbol 501 GraphicUsed by:502
Symbol 502 MovieClipUses:439 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501Used by:562
Symbol 503 GraphicUsed by:530
Symbol 504 GraphicUsed by:530
Symbol 505 GraphicUsed by:530
Symbol 506 GraphicUsed by:530
Symbol 507 GraphicUsed by:530
Symbol 508 GraphicUsed by:530
Symbol 509 GraphicUsed by:530
Symbol 510 GraphicUsed by:530
Symbol 511 GraphicUsed by:530
Symbol 512 GraphicUsed by:530
Symbol 513 GraphicUsed by:530
Symbol 514 GraphicUsed by:530
Symbol 515 GraphicUsed by:530
Symbol 516 GraphicUsed by:530
Symbol 517 GraphicUsed by:530
Symbol 518 GraphicUsed by:530
Symbol 519 GraphicUsed by:530
Symbol 520 GraphicUsed by:530
Symbol 521 GraphicUsed by:530
Symbol 522 GraphicUsed by:530
Symbol 523 GraphicUsed by:530
Symbol 524 GraphicUsed by:530
Symbol 525 GraphicUsed by:530
Symbol 526 GraphicUsed by:530
Symbol 527 GraphicUsed by:530
Symbol 528 GraphicUsed by:530
Symbol 529 GraphicUsed by:530
Symbol 530 MovieClipUses:503 441 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529Used by:532
Symbol 531 GraphicUsed by:532
Symbol 532 MovieClipUses:265 443 530 531Used by:562
Symbol 533 GraphicUsed by:559
Symbol 534 GraphicUsed by:559
Symbol 535 GraphicUsed by:559
Symbol 536 GraphicUsed by:559
Symbol 537 GraphicUsed by:559
Symbol 538 GraphicUsed by:559
Symbol 539 GraphicUsed by:559
Symbol 540 GraphicUsed by:559
Symbol 541 GraphicUsed by:559
Symbol 542 GraphicUsed by:559
Symbol 543 GraphicUsed by:559
Symbol 544 GraphicUsed by:559
Symbol 545 GraphicUsed by:559
Symbol 546 GraphicUsed by:559
Symbol 547 GraphicUsed by:559
Symbol 548 GraphicUsed by:559
Symbol 549 GraphicUsed by:559
Symbol 550 GraphicUsed by:559
Symbol 551 GraphicUsed by:559
Symbol 552 GraphicUsed by:559
Symbol 553 GraphicUsed by:559
Symbol 554 GraphicUsed by:559
Symbol 555 GraphicUsed by:559
Symbol 556 GraphicUsed by:559
Symbol 557 GraphicUsed by:559
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:533 443 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558Used by:562
Symbol 560 GraphicUsed by:561
Symbol 561 MovieClipUses:560Used by:562
Symbol 562 MovieClipUses:246 248 257 262 265 280 324 338 345 8 353 365 438 502 532 559 561Used by:Timeline
Symbol 563 GraphicUsed by:605
Symbol 564 GraphicUsed by:605
Symbol 565 GraphicUsed by:605
Symbol 566 GraphicUsed by:605
Symbol 567 GraphicUsed by:605
Symbol 568 GraphicUsed by:605
Symbol 569 GraphicUsed by:605
Symbol 570 GraphicUsed by:605
Symbol 571 GraphicUsed by:605
Symbol 572 GraphicUsed by:605
Symbol 573 GraphicUsed by:605
Symbol 574 GraphicUsed by:605
Symbol 575 GraphicUsed by:605
Symbol 576 GraphicUsed by:605
Symbol 577 GraphicUsed by:605
Symbol 578 GraphicUsed by:605
Symbol 579 GraphicUsed by:605
Symbol 580 GraphicUsed by:605
Symbol 581 GraphicUsed by:605
Symbol 582 GraphicUsed by:605
Symbol 583 GraphicUsed by:605
Symbol 584 GraphicUsed by:605
Symbol 585 GraphicUsed by:605
Symbol 586 GraphicUsed by:605
Symbol 587 GraphicUsed by:605
Symbol 588 GraphicUsed by:605
Symbol 589 GraphicUsed by:605
Symbol 590 GraphicUsed by:605
Symbol 591 GraphicUsed by:605
Symbol 592 GraphicUsed by:605
Symbol 593 GraphicUsed by:605
Symbol 594 GraphicUsed by:605
Symbol 595 GraphicUsed by:605
Symbol 596 GraphicUsed by:605
Symbol 597 GraphicUsed by:605
Symbol 598 GraphicUsed by:605
Symbol 599 GraphicUsed by:605
Symbol 600 GraphicUsed by:605
Symbol 601 GraphicUsed by:605
Symbol 602 GraphicUsed by:605
Symbol 603 GraphicUsed by:605
Symbol 604 GraphicUsed by:605
Symbol 605 MovieClipUses:563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604Used by:Timeline
Symbol 606 BitmapUsed by:607
Symbol 607 GraphicUses:606Used by:Timeline
Symbol 608 GraphicUsed by:613
Symbol 609 GraphicUsed by:613
Symbol 610 GraphicUsed by:613
Symbol 611 GraphicUsed by:613
Symbol 612 GraphicUsed by:613
Symbol 613 MovieClipUses:608 609 610 611 612Used by:636
Symbol 614 GraphicUsed by:636
Symbol 615 GraphicUsed by:636
Symbol 616 GraphicUsed by:636
Symbol 617 GraphicUsed by:636
Symbol 618 GraphicUsed by:636
Symbol 619 GraphicUsed by:629
Symbol 620 GraphicUsed by:629
Symbol 621 GraphicUsed by:629
Symbol 622 GraphicUsed by:629
Symbol 623 GraphicUsed by:629
Symbol 624 GraphicUsed by:629
Symbol 625 GraphicUsed by:629
Symbol 626 GraphicUsed by:629
Symbol 627 GraphicUsed by:629
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:619 620 621 622 623 624 625 626 627 628Used by:636
Symbol 630 GraphicUsed by:636
Symbol 631 GraphicUsed by:636
Symbol 632 GraphicUsed by:636
Symbol 633 GraphicUsed by:636
Symbol 634 GraphicUsed by:636
Symbol 635 GraphicUsed by:636
Symbol 636 MovieClipUses:613 614 615 616 617 618 629 630 631 632 633 634 635Used by:Timeline
Symbol 637 GraphicUsed by:645
Symbol 638 GraphicUsed by:645
Symbol 639 GraphicUsed by:645
Symbol 640 GraphicUsed by:645
Symbol 641 GraphicUsed by:645
Symbol 642 GraphicUsed by:645
Symbol 643 GraphicUsed by:645
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:637 638 639 640 641 642 643 644Used by:Timeline
Symbol 646 GraphicUsed by:647
Symbol 647 MovieClipUses:646Used by:650
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:648Used by:650
Symbol 650 MovieClipUses:647 649Used by:Timeline
Symbol 651 GraphicUsed by:652
Symbol 652 MovieClipUses:651Used by:656
Symbol 653 GraphicUsed by:654
Symbol 654 MovieClipUses:653Used by:655
Symbol 655 MovieClipUses:654Used by:656
Symbol 656 MovieClipUses:652 655Used by:Timeline
Symbol 657 GraphicUsed by:659
Symbol 658 TextUses:16Used by:659
Symbol 659 MovieClipUses:657 658Used by:Timeline
Symbol 660 GraphicUsed by:Timeline
Symbol 661 TextUses:16Used by:Timeline
Symbol 662 BitmapUsed by:663
Symbol 663 GraphicUses:662Used by:Timeline
Symbol 664 GraphicUsed by:Timeline
Symbol 665 GraphicUsed by:Timeline

Instance Names

"timer_clip"Frame 1Symbol 18 MovieClip
"holder1"Frame 1Symbol 92 MovieClip
"holder2"Frame 1Symbol 92 MovieClip
"holder3"Frame 1Symbol 92 MovieClip
"holder4"Frame 1Symbol 92 MovieClip
"holder5"Frame 1Symbol 92 MovieClip
"holder6"Frame 1Symbol 92 MovieClip
"flipper"Frame 1Symbol 100 MovieClip
"box"Frame 1Symbol 226 MovieClip
"tester"Frame 1Symbol 229 MovieClip
"robot1"Frame 1Symbol 562 MovieClip
"robot2"Frame 1Symbol 562 MovieClip
"robot3"Frame 1Symbol 562 MovieClip
"robot4"Frame 1Symbol 562 MovieClip
"robot5"Frame 1Symbol 562 MovieClip
"robot1"Frame 1Symbol 562 MovieClip
"box_sensor"Frame 1Symbol 12 MovieClip
"invisible"Frame 1Symbol 12 MovieClip
"star"Frame 1Symbol 650 MovieClip
"invisible"Symbol 13 MovieClip Frame 1Symbol 12 MovieClip
"box_light"Symbol 226 MovieClip Frame 1Symbol 161 MovieClip
"r1"Symbol 562 MovieClip Frame 20Symbol 248 MovieClip
"r2"Symbol 562 MovieClip Frame 20Symbol 248 MovieClip
"r3"Symbol 562 MovieClip Frame 20Symbol 248 MovieClip
"r4"Symbol 562 MovieClip Frame 20Symbol 248 MovieClip
"r5"Symbol 562 MovieClip Frame 20Symbol 248 MovieClip
"trails"Symbol 650 MovieClip Frame 1Symbol 647 MovieClip
"shooting"Symbol 650 MovieClip Frame 11Symbol 649 MovieClip
"star"Symbol 656 MovieClip Frame 1Symbol 655 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "bounce_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "swish1"
ExportAssets (56)Timeline Frame 1Symbol 3 as "step1"
ExportAssets (56)Timeline Frame 1Symbol 4 as "slap1"
ExportAssets (56)Timeline Frame 1Symbol 5 as "flip_noise"
ExportAssets (56)Timeline Frame 1Symbol 6 as "creak"
ExportAssets (56)Timeline Frame 1Symbol 7 as "click"
ExportAssets (56)Timeline Frame 1Symbol 8 as "swish"
ExportAssets (56)Timeline Frame 1Symbol 8 as "swish"

Labels

"setup"Frame 1
"start"Frame 10
"game over"Frame 21
"hidden"Symbol 58 MovieClip Frame 1
"explode"Symbol 58 MovieClip Frame 10
"still"Symbol 90 MovieClip Frame 1
"roll"Symbol 90 MovieClip Frame 11
"normal"Symbol 100 MovieClip Frame 1
"small"Symbol 100 MovieClip Frame 10
"mild"Symbol 100 MovieClip Frame 20
"severe"Symbol 100 MovieClip Frame 30
"stop"Symbol 154 MovieClip Frame 1
"no light"Symbol 161 MovieClip Frame 1
"light"Symbol 161 MovieClip Frame 10
"peep"Symbol 223 MovieClip Frame 1
"stop"Symbol 223 MovieClip Frame 341
"Normal"Symbol 226 MovieClip Frame 1
"Shake"Symbol 226 MovieClip Frame 10
"---"Symbol 353 MovieClip Frame 1
"rotating forwards"Symbol 353 MovieClip Frame 41
"step 1"Symbol 532 MovieClip Frame 1
"step 2"Symbol 532 MovieClip Frame 16
"Step 3"Symbol 532 MovieClip Frame 29
"left"Symbol 562 MovieClip Frame 1
"right"Symbol 562 MovieClip Frame 10
"flying1"Symbol 562 MovieClip Frame 20
"flying2"Symbol 562 MovieClip Frame 30
"flying3"Symbol 562 MovieClip Frame 40
"flying4"Symbol 562 MovieClip Frame 50
"power"Symbol 562 MovieClip Frame 62
"splash"Symbol 562 MovieClip Frame 73
"dive1"Symbol 562 MovieClip Frame 84
"dive2"Symbol 562 MovieClip Frame 105
"dive3"Symbol 562 MovieClip Frame 117
"dive4"Symbol 562 MovieClip Frame 132
"land1"Symbol 562 MovieClip Frame 142
"land2"Symbol 562 MovieClip Frame 289
"land3"Symbol 562 MovieClip Frame 301
"insult"Symbol 562 MovieClip Frame 312
"peep"Symbol 605 MovieClip Frame 1
"stop"Symbol 605 MovieClip Frame 255
"still"Symbol 636 MovieClip Frame 1
"enter"Symbol 636 MovieClip Frame 10
"still"Symbol 650 MovieClip Frame 1
"shoot"Symbol 650 MovieClip Frame 11
"still"Symbol 656 MovieClip Frame 1
"shoot"Symbol 656 MovieClip Frame 10

Dynamic Text Variables

timerSymbol 17 EditableText"Time: 60"
escapedSymbol 20 EditableText"0"
scoreSymbol 23 EditableText"0"




http://swfchan.com/3/12904/info.shtml
Created: 5/6 -2019 11:14:36 Last modified: 5/6 -2019 11:14:36 Server time: 11/05 -2024 06:11:38