STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229594 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #42385 |
n |
o |
p |
a |
e |
w |
e |
s |
o |
o |
h |
c |
n |
o |
p |
a |
e |
w |
e |
s |
o |
o |
h |
c |
More Options |
More Options |
Clear |
Clear |
MENU |
MENU |
Instructions : |
1. Aim and click to throw stuff at the character (quite simple isn't it ?) |
2. Use this panel to change settings during the game |
3. Click "Options" to change the character's body, background and music. |
4. Click at the item icon to change your weapon |
5. Click "Clear" to clear your character's body from splatters |
6. Click "MENU" to clear your character's body from splatters |
Close |
7. Click the speaker icon to mute all sounds |
MESSAGE |
SCORE |
Geography Game |
Play Europe Version |
Play USA Version |
Play Australia Version |
Play Central America Version |
Play Canada Version |
Play Africa Version |
Play Middle East Version |
Put This On Your Site |
ActionScript [AS1/AS2]
Instance of Symbol 151 MovieClip in Frame 1onClipEvent (load) { xin_motion_val = "Toward"; xin_alphatype_val = "No"; xout_motion_val = "None"; xout_alphatype_val = "No"; perc_req_val = 100; show_perc_val = "Yes"; slow_factor_val = 0.2; init_action_val = "_root.stop();"; play_action_val = "_root.play();"; }Frame 182stop();Instance of Symbol 134 MovieClip [GeographyGameComponent] in Frame 182onClipEvent (load) { map_colors = []; map_colors[0] = "0xD5A259"; map_colors[1] = "0xFC824F"; map_colors[2] = "0xE6A800"; map_colors[3] = "0xF1E2C0"; map_colors[4] = "0xFFCF00"; map_colors[5] = "0xF0C602"; map_colors[6] = "0xE69800"; map_colors[7] = "0xFF5700"; map_colors[8] = "0xFE9623"; rollover_color = "0x00CC00"; guessed_color = "0x000000"; guessed_alpha = 75; turn_mode = "Infinite Turns"; num_total_turns = 10; region_cycle = "Guess Once and Cycle"; fly_by_speed = 6; fly_height = 200; screen_width = 651.8; points_correct_answer = 10; points_incorrect_answer = -5; correct_sound_linkage = "correct_sound"; incorrect_sound_linkage = "incorrect_sound"; }Symbol 58 Buttonon (release) { _parent.gotoAndStop("mainmenu"); }Symbol 129 Buttonon (press) { if (game.mode & GEOGRAPHY_GAME_PAUSED) { game.mode = game.mode ^ GEOGRAPHY_GAME_PAUSED; if (!(game.mode & GEOGRAPHY_GAME_DISPLAYING_REGION)) { current_region_name = game.regions[game.current_region].standardForm(); } } else { game.mode = game.mode | GEOGRAPHY_GAME_PAUSED; current_region_name = "PAUSED"; } }Symbol 134 MovieClip [GeographyGameComponent] Frame 1Object.prototype.GEOGRAPHY_GAME_NULL = 0; Object.prototype.GEOGRAPHY_GAME_DISPLAYING_REGION = 2; Object.prototype.GEOGRAPHY_GAME_WAITING_FOR_USER = 4; Object.prototype.GEOGRAPHY_GAME_CORRECT_ANSWER = 8; Object.prototype.GEOGRAPHY_GAME_INCORRECT_ANSWER = 16; Object.prototype.GEOGRAPHY_GAME_PAUSED = 32; Array.prototype.swap = function (e1, e2) { var temp = this[e1]; this[e1] = this[e2]; this[e2] = temp; }; Array.prototype.shuffle = function () { var j = 0; while (j < this.length) { var e1 = Math.randi(0, this.length); var e2 = Math.randi(0, this.length); this.swap(e1, e2); j++; } }; Array.prototype.returnRandomElement = function () { return(this[Math.randi(0, this.length)]); }; Math.randi = function (a, b) { return(Math.floor(Math.random() * (b - a)) + a); }; String.prototype.standardForm = function () { var _str = new String(); var j = 0; while (j < this.length) { var ascii = this.charCodeAt(j); if ((0 < j) && ((ascii >= "A".charCodeAt(0)) && ("Z".charCodeAt(0) >= ascii))) { _str = _str + " "; } _str = _str + this.charAt(j); j++; } return(_str); }; MovieClip.prototype.setColor = function (col) { var _color = new Color(this); _color.setRGB(col); }; this._x = 0; this._y = 0; Object.prototype.GeographyGame = function () { this.current_map = 0; this.num_player_turns = this.num_total_turns; this.score = 0; this.timeline.score = 0; this.timeline.turns_remaining = this.num_total_turns; this.original_mascot_x = -20; this.mouse_over_region = undefined; this.old_mouse_over_region = undefined; this.initialize(); }; GeographyGame.prototype.map_colors = map_colors; GeographyGame.prototype.rollover_color = parseInt(rollover_color); GeographyGame.prototype.guessed_color = parseInt(guessed_color); GeographyGame.prototype.guessed_alpha = Number(guessed_alpha); GeographyGame.prototype.turn_mode = turn_mode; GeographyGame.prototype.num_total_turns = Number(num_total_turns); GeographyGame.prototype.region_cycle = region_cycle; GeographyGame.prototype.fly_by_speed = Number(fly_by_speed); GeographyGame.prototype.fly_height = Number(fly_height); GeographyGame.prototype.screen_width = Number(screen_width); GeographyGame.prototype.points_correct_answer = Number(points_correct_answer); GeographyGame.prototype.points_incorrect_answer = Number(points_incorrect_answer); GeographyGame.prototype.correct_sound_linkage = correct_sound_linkage; GeographyGame.prototype.incorrect_sound_linkage = incorrect_sound_linkage; GeographyGame.prototype.timeline = this; delete map_colors; delete rollover_color; delete guessed_color; delete guessed_alpha; delete turn_mode; delete num_total_turns; delete region_cycle; delete fly_by_speed; delete fly_height; delete screen_width; GeographyGame.prototype.initialize = function () { if (this.current_map == this.timeline.maps._totalframes) { _root.score = this.score; if (this.turn_mode == "Infinite Turns") { _root.gotoAndStop(_root._totalframes); } else { _root.gotoAndStop(_root._totalframes - 1); } } else { this.initialize_variables(); this.load_current_map(); this.build_region_database(); this.create_mascot(); } }; GeographyGame.prototype.initialize_variables = function () { this.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; this.current_region = 0; if (this.mode == "Turns Reset Every Level") { this.num_player_turns = this.num_total_turns; this.timeline.turns_remaining = this.num_total_turns; } }; GeographyGame.prototype.load_current_map = function () { this.timeline.maps.gotoAndStop(this.current_map + 1); }; GeographyGame.prototype.build_region_database = function () { var index = 0; this.regions = new Array(); for (var j in this.timeline.maps) { var _mc = this.timeline.maps[j]; if (typeof(_mc) == "movieclip") { this.regions[index] = _mc._name; _mc.original_color = parseInt(this.map_colors[index % this.map_colors.length]); _mc.setColor(_mc.original_color); _mc.selected = false; index++; } } this.num_total_map_regions = this.regions.length; this.regions.shuffle(); }; GeographyGame.prototype.create_mascot = function () { this.timeline.mascot.removeMovieClip(); this.timeline.attachMovie("mascot_gg", "mascot", 1); this.timeline.mascot._x = this.original_mascot_x; this.timeline.mascot._y = this.fly_height; this.timeline.mascot.field = this.regions[this.current_region].standardForm(); this.timeline.current_region_name = ""; }; GeographyGame.prototype.action = function () { if (this.mode & GEOGRAPHY_GAME_PAUSED) { return(undefined); } if (this.mode & GEOGRAPHY_GAME_DISPLAYING_REGION) { this.animate_mascot(); } if ((this.mode & GEOGRAPHY_GAME_WAITING_FOR_USER) || (this.mode & GEOGRAPHY_GAME_DISPLAYING_REGION)) { this.render_map(); } else if (this.mode & GEOGRAPHY_GAME_CORRECT_ANSWER) { this.check_correct_message_done(); } else if (this.mode & GEOGRAPHY_GAME_INCORRECT_ANSWER) { this.check_incorrect_message_done(); } }; GeographyGame.prototype.animate_mascot = function () { this.timeline.mascot._x = this.timeline.mascot._x + this.fly_by_speed; this.timeline.current_region_name = this.regions[this.current_region].standardForm(); if ((this.timeline.mascot._x - this.timeline.mascot._width) >= this.screen_width) { this.mode = GEOGRAPHY_GAME_WAITING_FOR_USER; this.timeline.mascot._x = this.original_mascot_x; } }; GeographyGame.prototype.render_map = function () { this.old_mouse_over_region = this.mouse_over_region; var num_checked_regions = 0; for (var j in this.timeline.maps) { var _mc = this.timeline.maps[j]; if (((typeof(_mc) == "movieclip") && (_mc.hitTest(_root._xmouse, _root._ymouse, true))) && (!_mc.selected)) { this.mouse_over_region = _mc; break; } if (typeof(_mc) == "movieclip") { num_checked_regions++; } } if (!this.old_mouse_over_region.selected) { this.old_mouse_over_region.setColor(this.old_mouse_over_region.original_color); } if (!this.mouse_over_region.selected) { this.mouse_over_region.setColor(this.rollover_color); } if ((num_checked_regions == this.num_total_map_regions) && (!this.old_mouse_over_region.selected)) { this.old_mouse_over_region.setColor(this.old_mouse_over_region.original_color); } }; GeographyGame.prototype.mouse_click = function () { if ((this.mode & GEOGRAPHY_GAME_WAITING_FOR_USER) || (this.mode & GEOGRAPHY_GAME_DISPLAYING_REGION)) { for (var j in this.timeline.maps) { var _mc = this.timeline.maps[j]; if (_mc.hitTest(_root._xmouse, _root._ymouse, true) && (!_mc.selected)) { this.evaluate_guess(_mc); this.timeline.mascot._x = this.original_mascot_x; return(undefined); } } } }; GeographyGame.prototype.evaluate_guess = function (region_mc) { if (region_mc._name == this.regions[this.current_region]) { this.player_guessed_correctly(region_mc); } else { this.player_guessed_incorrectly(region_mc); } }; GeographyGame.prototype.player_guessed_correctly = function (region_mc) { this.score = this.score + this.points_correct_answer; this.timeline.score = this.score; region_mc.selected = true; region_mc.setColor(this.guessed_color); region_mc._alpha = this.guessed_alpha; this.regions.splice(this.current_region, 1); this.mode = GEOGRAPHY_GAME_CORRECT_ANSWER; this.create_correct_answer_message(); }; GeographyGame.prototype.player_guessed_incorrectly = function (region_mc) { this.score = this.score + this.points_incorrect_answer; this.timeline.score = this.score; region_mc.setColor(region_mc.original_color); if (this.region_cycle == "Guess Once and Remove") { this.regions.splice(this.current_region, 1); this.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } else if (this.region_cycle == "Guess Once and Cycle") { this.regions.push(this.regions[this.current_region]); this.regions.splice(this.current_region, 1); this.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } else if (this.region_cycle == "Guess Many Times") { this.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } if ((this.turn_mode == "Turns Reset Every Level") || (this.turn_mode == "One Set of Turns")) { this.num_player_turns--; this.timeline.turns_remaining = this.num_player_turns; if (this.num_player_turns < 0) { _root.gotoAndStop(_root._totalframes); } } this.create_incorrect_answer_message(); }; GeographyGame.prototype.create_correct_answer_message = function () { this.timeline.attachMovie("correct_gg", "message", 2); this.timeline.message._x = this.timeline.maps._x; this.timeline.message._y = this.timeline.maps._y; this.timeline.message.play(); var _sound = new Sound(); _sound.attachSound(this.correct_sound_linkage); _sound.start(0, 0); }; GeographyGame.prototype.create_incorrect_answer_message = function () { this.timeline.attachMovie("incorrect_gg", "message", 2); this.timeline.message._x = this.timeline.maps._x; this.timeline.message._y = this.timeline.maps._y; this.timeline.message.play(); var _sound = new Sound(); _sound.attachSound(this.incorrect_sound_linkage); _sound.start(0, 0); }; GeographyGame.prototype.check_correct_message_done = function () { if (this.timeline.message._currentframe == this.timeline.message._totalframes) { this.timeline.message.removeMovieClip(); this.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; this.timeline.mascot.field = this.regions[this.current_region].standardForm(); this.check_map_status(); } }; GeographyGame.prototype.check_incorrect_message_done = function () { if (this.timeline.message._currentframe == this.timeline.message._totalframes) { this.timeline.message.removeMovieClip(); if (this.region_cycle == "Guess Many Times") { this.mode = GEOGRAPHY_GAME_WAITING_FOR_USER; } else { this.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; this.timeline.mascot.field = this.regions[this.current_region].standardForm(); } this.check_map_status(); } }; GeographyGame.prototype.check_map_status = function () { if (this.regions.length == 0) { this.current_map++; this.initialize(); } }; game = new GeographyGame();Instance of Symbol 133 MovieClip in Symbol 134 MovieClip [GeographyGameComponent] Frame 1onClipEvent (load) { this._visible = false; } onClipEvent (mouseDown) { _parent.game.mouse_click(); } onClipEvent (enterFrame) { _parent.game.action(); }Symbol 151 MovieClip Frame 1stop();Instance of Symbol 150 MovieClip "swfloader" in Symbol 151 MovieClip Frame 1onClipEvent (load) { function strip_spaces(str) { var _str = new String(""); var j = 0; while (j < str.length) { if ((str.charAt(j) != " ") && (str.charAt(j) != ";")) { _str = _str + str.charAt(j); } j++; } return(_str); } function simple_script(action, timeline) { action = strip_spaces(action); if ((0 < action.length) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) { var sections = action.split("."); var timeline_action = sections.pop(); var first_paren = timeline_action.indexOf("("); var second_paren = timeline_action.indexOf(")"); var timeline_function = timeline_action.substr(0, first_paren); var function_parameter = timeline_action.substr(first_paren + 1, second_paren - (first_paren + 1)); var timeline_reference = timeline; var j = 0; while (j < sections.length) { timeline_reference = timeline_reference[sections[j]]; j++; } if (function_parameter.indexOf("\"") != -1) { function_parameter = function_parameter.substr(1, function_parameter.length - 2); } timeline_reference[timeline_function](function_parameter); } } function execute_action() { unloaded = true; _parent._visible = false; simple_script(_parent.play_action_val, _parent); } _parent.anim.gotoAndStop(1); simple_script(_parent.init_action_val, _parent); var done = false; var unloaded = false; var orig_x = _parent._x; var orig_y = _parent._y; var dist_x = (_parent._x + ((_parent._width * 2) / 3)); var dist_y = (_parent._y + ((_parent._height * 2) / 3)); var orig_a = _parent._alpha; var accel_jump = 0.75; var slow_factor = _parent.slow_factor_val; var speed_factor = (1 + (slow_factor / (1 - slow_factor))); var ready = false; var perc_fadeout = 0; _parent.perc._x = _parent.anim._x - (_parent.perc._width / 2); _parent.perc._y = _parent.anim._y - (_parent.perc._height / 2); if (slow_factor < 1) { var _local2 = "Up"; switch (_parent.xin_motion_val) { case _local2 : _parent._y = orig_y + (dist_y * 2); break; case "Down" : _parent._y = orig_y - (dist_y * 2); break; case "Left" : _parent._x = orig_x + (dist_x * 2); break; case "Right" : _parent._x = orig_x - (dist_x * 2); break; case "Toward" : _parent._xscale = (_parent._yscale = 1); break; case "None" : _parent._alpha = 0; } } else { ready = true; } } onClipEvent (enterFrame) { if (unloaded) { return(undefined); } if (!ready) { var _local2 = "Toward"; switch (_parent.xin_motion_val) { case _local2 : _parent._xscale = _parent._xscale + ((100 - _parent._xscale) * slow_factor); _parent._yscale = _parent._xscale; if (_parent.xin_alphatype_val == "Yes") { _parent._alpha = Math.round((orig_a / 100) * Math.max(0, Math.min(_parent._xscale, 100))); } if (Math.abs(100 - _parent._xscale) < 0.5) { _parent._xscale = (_parent._yscale = 100); _parent._alpha = orig_a; ready = true; } break; default : _parent._x = _parent._x + ((orig_x - _parent._x) * slow_factor); _parent._y = _parent._y + ((orig_y - _parent._y) * slow_factor); if (_parent.xin_alphatype_val == "Yes") { if (_parent.xin_motion_val == "None") { _parent._alpha = _parent._alpha + ((orig_a - _parent._alpha) * slow_factor); } else if (Math.abs(orig_y - _parent._y) < Math.abs(orig_x - _parent._x)) { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x)) * 100); } else { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y)) * 100); } } if (!(((_parent.xin_motion_val == "None") && (1 >= Math.abs(_parent._alpha - orig_a))) || (((_parent.xin_motion_val != "None") && (Math.abs(_parent._y - orig_y) < 0.5)) && (Math.abs(_parent._x - orig_x) < 0.5)))) { break; } _parent._x = orig_x; _parent._y = orig_y; _parent._alpha = orig_a; ready = true; } } else if (!done) { var rl = _root.getBytesLoaded(); var rt = (_root.getBytesTotal() * (_parent.perc_req_val / 100)); if ((10 < rl) && (10 < rt)) { rl = Math.min(rl, rt); var new_frame = (_parent.anim._currentframe + Math.ceil(((_parent.anim._totalframes * (rl / rt)) - _parent.anim._currentframe) / 4)); new_frame = Math.max(1, new_frame); if (_parent.show_perc_val == "Yes") { _parent.perc.text = Math.round(((new_frame - 1) / (_parent.anim._totalframes - 1)) * 100) + " %"; } if (new_frame != _parent.anim._currentframe) { _parent.anim.gotoAndStop(new_frame); } if ((_parent.anim._totalframes == _parent.anim._currentframe) && (rl >= rt)) { done = true; } } } else if (slow_factor < 1) { var _local2 = "Down"; switch (_parent.xout_motion_val) { case _local2 : if (orig_y >= _parent._y) { _parent._y = orig_y + accel_jump; } _parent._y = orig_y + (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if ((orig_y + (dist_y * 2)) < _parent._y) { execute_action(); } break; case "Up" : if (_parent._y >= orig_y) { _parent._y = orig_y - accel_jump; } _parent._y = orig_y - (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if (_parent._y < (orig_y - (dist_y * 2))) { execute_action(); } break; case "Right" : if (orig_x >= _parent._x) { _parent._x = orig_x + accel_jump; } _parent._x = orig_x + (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if ((orig_x + (dist_x * 2)) < _parent._x) { execute_action(); } break; case "Left" : if (_parent._x >= orig_x) { _parent._x = orig_x - accel_jump; } _parent._x = orig_x - (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x < (orig_x - (dist_x * 2))) { execute_action(); } break; case "Away" : if ((_parent._xscale >= 100) || (_parent._yscale >= 100)) { _parent._xscale = (_parent._yscale = 100 - accel_jump); } _parent._xscale = (_parent._yscale = Math.max(0.5, 100 - ((100 - _parent._yscale) * speed_factor))); perc_fadeout = 100 - Math.round(Math.max(0, Math.min(_parent._xscale, 100))); if (_parent._xscale < 1) { execute_action(); } break; default : perc_fadeout = perc_fadeout + ((100 - perc_fadeout) * slow_factor); if (1 < Math.abs(perc_fadeout - 100)) { break; } execute_action(); } _local2 = "Yes"; if (!((typeof(_parent.xout_alphatype_val) == typeof(_local2)) ? (_parent.xout_motion_val == _local2) : false)) { } else { _parent._alpha = (orig_a / 100) * (100 - perc_fadeout); } } else { execute_action(); } }Symbol 230 Buttonon (release) { getURL ("http://www.craziness.com", "_blank"); }Symbol 238 Buttonon (press) { gotoAndPlay (1); }Symbol 249 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-europe", "_top"); }Symbol 251 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-usa", "_top"); }Symbol 253 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-australia", "_top"); }Symbol 255 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-central-america", "_top"); }Symbol 257 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-canada", "_top"); }Symbol 259 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-africa", "_top"); }Symbol 261 Buttonon (release) { getURL ("http://www.craziness.com/games/geography-game-middle-east", "_top"); }Symbol 264 Buttonon (release) { getURL ("http://www.gamesforyourwebsite.com", "_top"); }
Library Items
Symbol 1 Sound [correct_sound] | ||
Symbol 2 Sound [Cepret] | ||
Symbol 3 Sound [incorrect_sound] | ||
Symbol 4 Graphic | Used by:5 | |
Symbol 5 MovieClip [stuff5] | Uses:4 | Used by:61 |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip [stuff4] | Uses:6 | Used by:61 |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip [stuff3] | Uses:8 | Used by:61 |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip [stuff2] | Uses:10 | Used by:61 |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip [stuff1] | Uses:12 | Used by:61 |
Symbol 14 Graphic | Used by:61 | |
Symbol 15 Font | Used by:16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 48 49 50 51 52 53 54 55 59 | |
Symbol 16 EditableText | Uses:15 | Used by:61 |
Symbol 17 EditableText | Uses:15 | Used by:61 |
Symbol 18 EditableText | Uses:15 | Used by:61 |
Symbol 19 EditableText | Uses:15 | Used by:61 |
Symbol 20 EditableText | Uses:15 | Used by:61 |
Symbol 21 EditableText | Uses:15 | Used by:61 |
Symbol 22 EditableText | Uses:15 | Used by:61 |
Symbol 23 EditableText | Uses:15 | Used by:61 |
Symbol 24 EditableText | Uses:15 | Used by:61 |
Symbol 25 EditableText | Uses:15 | Used by:61 |
Symbol 26 EditableText | Uses:15 | Used by:61 |
Symbol 27 EditableText | Uses:15 | Used by:61 |
Symbol 28 EditableText | Uses:15 | Used by:61 |
Symbol 29 EditableText | Uses:15 | Used by:61 |
Symbol 30 EditableText | Uses:15 | Used by:61 |
Symbol 31 EditableText | Uses:15 | Used by:61 |
Symbol 32 EditableText | Uses:15 | Used by:61 |
Symbol 33 EditableText | Uses:15 | Used by:61 |
Symbol 34 EditableText | Uses:15 | Used by:61 |
Symbol 35 EditableText | Uses:15 | Used by:61 |
Symbol 36 EditableText | Uses:15 | Used by:61 |
Symbol 37 EditableText | Uses:15 | Used by:61 |
Symbol 38 EditableText | Uses:15 | Used by:61 |
Symbol 39 EditableText | Uses:15 | Used by:61 |
Symbol 40 EditableText | Uses:15 | Used by:61 |
Symbol 41 EditableText | Uses:15 | Used by:61 |
Symbol 42 EditableText | Uses:15 | Used by:61 |
Symbol 43 EditableText | Uses:15 | Used by:61 |
Symbol 44 EditableText | Uses:15 | Used by:61 |
Symbol 45 EditableText | Uses:15 | Used by:61 |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:61 |
Symbol 48 EditableText | Uses:15 | Used by:61 |
Symbol 49 EditableText | Uses:15 | Used by:61 |
Symbol 50 EditableText | Uses:15 | Used by:61 |
Symbol 51 EditableText | Uses:15 | Used by:61 |
Symbol 52 EditableText | Uses:15 | Used by:61 |
Symbol 53 EditableText | Uses:15 | Used by:61 |
Symbol 54 EditableText | Uses:15 | Used by:61 |
Symbol 55 EditableText | Uses:15 | Used by:58 |
Symbol 56 Graphic | Used by:58 | |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 Button | Uses:55 56 57 | Used by:61 |
Symbol 59 EditableText | Uses:15 | Used by:61 |
Symbol 60 Graphic | Used by:61 | |
Symbol 61 MovieClip [intructionmc] | Uses:14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 13 11 9 7 5 40 41 42 43 44 45 47 48 49 50 51 52 53 54 58 59 60 | |
Symbol 62 Graphic | Used by:63 | |
Symbol 63 MovieClip [splatter4] | Uses:62 | |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip [splatter3] | Uses:64 | |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip [splatter2] | Uses:66 | |
Symbol 68 Graphic | Used by:69 | |
Symbol 69 MovieClip [splatter1] | Uses:68 | |
Symbol 70 Graphic | Used by:83 | |
Symbol 71 Graphic | Used by:74 | |
Symbol 72 Graphic | Used by:74 | |
Symbol 73 Graphic | Used by:74 | |
Symbol 74 MovieClip | Uses:71 72 73 | Used by:83 |
Symbol 75 Graphic | Used by:83 | |
Symbol 76 Graphic | Used by:81 | |
Symbol 77 Graphic | Used by:81 | |
Symbol 78 Graphic | Used by:81 | |
Symbol 79 Graphic | Used by:81 | |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip | Uses:76 77 78 79 80 | Used by:83 |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip | Uses:70 74 75 81 82 | Used by:86 |
Symbol 84 Font | Used by:85 130 131 132 241 | |
Symbol 85 EditableText | Uses:84 | Used by:86 |
Symbol 86 MovieClip [mascot_gg] | Uses:83 85 | |
Symbol 87 Graphic | Used by:89 | |
Symbol 88 Graphic | Used by:89 | |
Symbol 89 MovieClip [correct_gg] | Uses:87 88 | |
Symbol 90 Graphic | Used by:92 | |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip [incorrect_gg] | Uses:90 91 | |
Symbol 93 Graphic | Used by:120 | |
Symbol 94 Graphic | Used by:95 | |
Symbol 95 MovieClip | Uses:94 | Used by:120 |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 MovieClip | Uses:96 | Used by:120 |
Symbol 98 Graphic | Used by:99 | |
Symbol 99 MovieClip | Uses:98 | Used by:120 |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 MovieClip | Uses:100 | Used by:120 |
Symbol 102 Graphic | Used by:103 | |
Symbol 103 MovieClip | Uses:102 | Used by:120 |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip | Uses:104 | Used by:120 |
Symbol 106 Graphic | Used by:107 | |
Symbol 107 MovieClip | Uses:106 | Used by:120 |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:108 | Used by:120 |
Symbol 110 Graphic | Used by:111 | |
Symbol 111 MovieClip | Uses:110 | Used by:120 |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:120 |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip | Uses:114 | Used by:120 |
Symbol 116 Graphic | Used by:117 | |
Symbol 117 MovieClip | Uses:116 | Used by:120 |
Symbol 118 Graphic | Used by:119 | |
Symbol 119 MovieClip | Uses:118 | Used by:120 |
Symbol 120 MovieClip [maps_gg] | Uses:93 95 97 99 101 103 105 107 109 111 113 115 117 119 | Used by:134 |
Symbol 121 Graphic | Used by:134 | |
Symbol 122 Graphic | Used by:134 | |
Symbol 123 Graphic | Used by:129 | |
Symbol 124 Graphic | Used by:129 | |
Symbol 125 Graphic | Used by:129 | |
Symbol 126 Graphic | Used by:129 | |
Symbol 127 Sound | Used by:129 | |
Symbol 128 Sound | Used by:129 | |
Symbol 129 Button | Uses:123 124 125 126 127 128 | Used by:134 |
Symbol 130 EditableText | Uses:84 | Used by:134 |
Symbol 131 EditableText | Uses:84 | Used by:134 |
Symbol 132 Text | Uses:84 | Used by:133 |
Symbol 133 MovieClip | Uses:132 | Used by:134 |
Symbol 134 MovieClip [GeographyGameComponent] | Uses:120 121 122 129 130 131 133 | Used by:Timeline |
Symbol 135 Graphic | Used by:Timeline | |
Symbol 136 Graphic | Used by:137 | |
Symbol 137 MovieClip | Uses:136 | Used by:146 |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:146 |
Symbol 140 Graphic | Used by:146 | |
Symbol 141 ShapeTweening | Used by:146 | |
Symbol 142 Graphic | Used by:146 | |
Symbol 143 Graphic | Used by:144 | |
Symbol 144 MovieClip | Uses:143 | Used by:146 |
Symbol 145 Graphic | Used by:146 | |
Symbol 146 MovieClip | Uses:137 139 140 141 142 144 145 | Used by:151 |
Symbol 147 Font | Used by:148 248 250 252 254 256 258 260 263 | |
Symbol 148 EditableText | Uses:147 | Used by:149 |
Symbol 149 MovieClip | Uses:148 | Used by:151 |
Symbol 150 MovieClip | Used by:151 | |
Symbol 151 MovieClip | Uses:146 149 150 | Used by:Timeline |
Symbol 152 Graphic | Used by:Timeline | |
Symbol 153 Graphic | Used by:Timeline | |
Symbol 154 Bitmap | Used by:155 | |
Symbol 155 Graphic | Uses:154 | Used by:Timeline |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:156 | Used by:228 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 | Used by:228 |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:228 |
Symbol 162 Graphic | Used by:163 | |
Symbol 163 MovieClip | Uses:162 | Used by:228 |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:228 |
Symbol 166 Graphic | Used by:169 | |
Symbol 167 Graphic | Used by:169 | |
Symbol 168 Graphic | Used by:169 | |
Symbol 169 MovieClip | Uses:166 167 168 | Used by:228 |
Symbol 170 Graphic | Used by:171 | |
Symbol 171 MovieClip | Uses:170 | Used by:228 |
Symbol 172 Graphic | Used by:173 | |
Symbol 173 MovieClip | Uses:172 | Used by:228 |
Symbol 174 Graphic | Used by:175 | |
Symbol 175 MovieClip | Uses:174 | Used by:228 |
Symbol 176 Graphic | Used by:177 | |
Symbol 177 MovieClip | Uses:176 | Used by:228 |
Symbol 178 Graphic | Used by:179 | |
Symbol 179 MovieClip | Uses:178 | Used by:228 |
Symbol 180 Graphic | Used by:181 | |
Symbol 181 MovieClip | Uses:180 | Used by:228 |
Symbol 182 Graphic | Used by:183 | |
Symbol 183 MovieClip | Uses:182 | Used by:228 |
Symbol 184 Graphic | Used by:185 | |
Symbol 185 MovieClip | Uses:184 | Used by:228 |
Symbol 186 Graphic | Used by:228 | |
Symbol 187 Graphic | Used by:188 | |
Symbol 188 MovieClip | Uses:187 | Used by:228 |
Symbol 189 Sound | Used by:228 | |
Symbol 190 Graphic | Used by:191 | |
Symbol 191 MovieClip | Uses:190 | Used by:228 |
Symbol 192 Graphic | Used by:193 | |
Symbol 193 MovieClip | Uses:192 | Used by:228 |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip | Uses:194 | Used by:228 |
Symbol 196 Graphic | Used by:228 | |
Symbol 197 Sound | Used by:228 | |
Symbol 198 Graphic | Used by:199 | |
Symbol 199 MovieClip | Uses:198 | Used by:228 |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip | Uses:200 | Used by:228 |
Symbol 202 Graphic | Used by:203 | |
Symbol 203 MovieClip | Uses:202 | Used by:228 |
Symbol 204 Graphic | Used by:228 | |
Symbol 205 Graphic | Used by:228 | |
Symbol 206 Graphic | Used by:228 | |
Symbol 207 Graphic | Used by:228 | |
Symbol 208 Graphic | Used by:228 | |
Symbol 209 Graphic | Used by:228 | |
Symbol 210 Graphic | Used by:228 | |
Symbol 211 Graphic | Used by:228 | |
Symbol 212 Graphic | Used by:228 | |
Symbol 213 Graphic | Used by:228 | |
Symbol 214 Graphic | Used by:228 | |
Symbol 215 Graphic | Used by:228 | |
Symbol 216 Graphic | Used by:228 | |
Symbol 217 Graphic | Used by:228 | |
Symbol 218 Graphic | Used by:228 | |
Symbol 219 Graphic | Used by:228 | |
Symbol 220 Graphic | Used by:228 | |
Symbol 221 Graphic | Used by:228 | |
Symbol 222 Graphic | Used by:228 | |
Symbol 223 Graphic | Used by:228 | |
Symbol 224 Graphic | Used by:228 | |
Symbol 225 Graphic | Used by:228 | |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip | Uses:226 | Used by:228 |
Symbol 228 MovieClip | Uses:157 159 161 163 165 169 171 173 175 177 179 181 183 185 186 188 189 191 193 195 196 197 199 201 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 227 | Used by:Timeline |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 Button | Uses:229 | Used by:Timeline |
Symbol 231 Graphic | Used by:Timeline | |
Symbol 232 Graphic | Used by:Timeline | |
Symbol 233 Graphic | Used by:238 | |
Symbol 234 Graphic | Used by:238 | |
Symbol 235 Graphic | Used by:238 | |
Symbol 236 Graphic | Used by:238 | |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 Button | Uses:233 234 235 236 237 | Used by:Timeline |
Symbol 239 Graphic | Used by:Timeline | |
Symbol 240 Graphic | Used by:Timeline | |
Symbol 241 EditableText | Uses:84 | Used by:Timeline |
Symbol 242 Graphic | Used by:Timeline | |
Symbol 243 Graphic | Used by:Timeline | |
Symbol 244 Graphic | Used by:Timeline | |
Symbol 245 Graphic | Used by:Timeline | |
Symbol 246 Graphic | Used by:Timeline | |
Symbol 247 Graphic | Used by:249 251 253 255 257 259 261 | |
Symbol 248 Text | Uses:147 | Used by:249 |
Symbol 249 Button | Uses:247 248 | Used by:Timeline |
Symbol 250 Text | Uses:147 | Used by:251 |
Symbol 251 Button | Uses:247 250 | Used by:Timeline |
Symbol 252 Text | Uses:147 | Used by:253 |
Symbol 253 Button | Uses:247 252 | Used by:Timeline |
Symbol 254 Text | Uses:147 | Used by:255 |
Symbol 255 Button | Uses:247 254 | Used by:Timeline |
Symbol 256 Text | Uses:147 | Used by:257 |
Symbol 257 Button | Uses:247 256 | Used by:Timeline |
Symbol 258 Text | Uses:147 | Used by:259 |
Symbol 259 Button | Uses:247 258 | Used by:Timeline |
Symbol 260 Text | Uses:147 | Used by:261 |
Symbol 261 Button | Uses:247 260 | Used by:Timeline |
Symbol 262 Graphic | Used by:264 | |
Symbol 263 Text | Uses:147 | Used by:264 |
Symbol 264 Button | Uses:262 263 | Used by:Timeline |
Instance Names
"Brazil" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 95 MovieClip |
"FrenchGuiana" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 97 MovieClip |
"Suriname" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 99 MovieClip |
"Guyana" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 101 MovieClip |
"Venezuela" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 103 MovieClip |
"Colombia" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 105 MovieClip |
"Ecuador" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 107 MovieClip |
"Peru" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 109 MovieClip |
"Bolivia" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 111 MovieClip |
"Paraguay" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 113 MovieClip |
"Uruguay" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 115 MovieClip |
"Chile" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 117 MovieClip |
"Argentina" | Symbol 120 MovieClip [maps_gg] Frame 1 | Symbol 119 MovieClip |
"maps" | Symbol 134 MovieClip [GeographyGameComponent] Frame 1 | Symbol 120 MovieClip [maps_gg] |
"anim" | Symbol 151 MovieClip Frame 1 | Symbol 146 MovieClip |
"perc" | Symbol 151 MovieClip Frame 1 | Symbol 149 MovieClip |
"swfloader" | Symbol 151 MovieClip Frame 1 | Symbol 150 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "correct_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "Cepret" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "incorrect_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "stuff1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "stuff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "stuff3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "stuff4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "stuff5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 61 as "intructionmc" |
ExportAssets (56) | Timeline Frame 1 | Symbol 63 as "splatter4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 65 as "splatter3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 67 as "splatter2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 69 as "splatter1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 86 as "mascot_gg" |
ExportAssets (56) | Timeline Frame 1 | Symbol 89 as "correct_gg" |
ExportAssets (56) | Timeline Frame 1 | Symbol 92 as "incorrect_gg" |
ExportAssets (56) | Timeline Frame 1 | Symbol 120 as "maps_gg" |
ExportAssets (56) | Timeline Frame 1 | Symbol 120 as "maps_gg" |
ExportAssets (56) | Timeline Frame 1 | Symbol 134 as "GeographyGameComponent" |
ExportAssets (56) | Timeline Frame 182 | Symbol 134 as "GeographyGameComponent" |
Dynamic Text Variables
field | Symbol 85 EditableText | "MESSAGE" |
score | Symbol 130 EditableText | "SCORE" |
current_region_name | Symbol 131 EditableText | "" |
text | Symbol 148 EditableText | "" |
score | Symbol 241 EditableText | "" |
|