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

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

Geography Game Europe.swf

This is the info page for
Flash #25228

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


Text
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

Northern Ireland
is part of UK.
England means
UK. For Russia
find Kaliningrad.

Play Australia Version

Play USA Version

Play South America 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 197 MovieClip in Frame 1
//component parameters onClipEvent (initialize) { 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 21
stop();
Instance of Symbol 180 MovieClip [GeographyGameComponent] in Frame 21
//component parameters onClipEvent (initialize) { 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 Button
on (release) { _parent.gotoAndStop("mainmenu"); }
Symbol 175 Button
on (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 180 MovieClip [GeographyGameComponent] Frame 1
Object.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 _local1 = this; var _local2 = _local1[e1]; _local1[e1] = _local1[e2]; _local1[e2] = _local2; }; Array.prototype.shuffle = function () { var _local1 = this; var _local2 = 0; while (_local2 < _local1.length) { var e1 = Math.randi(0, _local1.length); var _local3 = Math.randi(0, _local1.length); _local1.swap(e1, _local3); _local2++; } }; 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 _local3 = this; var _str = new String(); var _local1 = 0; while (_local1 < _local3.length) { var _local2 = _local3.charCodeAt(_local1); if ((_local1 > 0) && ((_local2 >= "A".charCodeAt(0)) && (_local2 <= "Z".charCodeAt(0)))) { _str = _str + " "; } _str = _str + _local3.charAt(_local1); _local1++; } return(_str); }; MovieClip.prototype.setColor = function (col) { var _local1 = new Color(this); _local1.setRGB(col); }; this._x = 0; this._y = 0; Object.prototype.GeographyGame = function () { var _local1 = this; _local1.current_map = 0; _local1.num_player_turns = _local1.num_total_turns; _local1.score = 0; _local1.timeline.score = 0; _local1.timeline.turns_remaining = _local1.num_total_turns; _local1.original_mascot_x = -20; _local1.mouse_over_region = undefined; _local1.old_mouse_over_region = undefined; _local1.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 () { var _local1 = this; var _local2 = _root; if (_local1.current_map == _local1.timeline.maps._totalframes) { _local2.score = _local1.score; if (_local1.turn_mode == "Infinite Turns") { _local2.gotoAndStop(_local2._totalframes); } else { _local2.gotoAndStop(_local2._totalframes - 1); } } else { _local1.initialize_variables(); _local1.load_current_map(); _local1.build_region_database(); _local1.create_mascot(); } }; GeographyGame.prototype.initialize_variables = function () { var _local1 = this; _local1.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; _local1.current_region = 0; if (_local1.mode == "Turns Reset Every Level") { _local1.num_player_turns = _local1.num_total_turns; _local1.timeline.turns_remaining = _local1.num_total_turns; } }; GeographyGame.prototype.load_current_map = function () { this.timeline.maps.gotoAndStop(this.current_map + 1); }; GeographyGame.prototype.build_region_database = function () { var _local2 = this; var _local3 = 0; _local2.regions = new Array(); for (var j in _local2.timeline.maps) { var _local1 = _local2.timeline.maps[j]; if (typeof(_local1) == "movieclip") { _local2.regions[_local3] = _local1._name; _local1.original_color = parseInt(_local2.map_colors[_local3 % _local2.map_colors.length]); _local1.setColor(_local1.original_color); _local1.selected = false; _local3++; } } _local2.num_total_map_regions = _local2.regions.length; _local2.regions.shuffle(); }; GeographyGame.prototype.create_mascot = function () { var _local1 = this; _local1.timeline.mascot.removeMovieClip(); _local1.timeline.attachMovie("mascot_gg", "mascot", 1); _local1.timeline.mascot._x = _local1.original_mascot_x; _local1.timeline.mascot._y = _local1.fly_height; _local1.timeline.mascot.field = _local1.regions[_local1.current_region].standardForm(); _local1.timeline.current_region_name = ""; }; GeographyGame.prototype.action = function () { var _local1 = this; if (_local1.mode & GEOGRAPHY_GAME_PAUSED) { } else { if (_local1.mode & GEOGRAPHY_GAME_DISPLAYING_REGION) { _local1.animate_mascot(); } if ((_local1.mode & GEOGRAPHY_GAME_WAITING_FOR_USER) || (_local1.mode & GEOGRAPHY_GAME_DISPLAYING_REGION)) { _local1.render_map(); } else if (_local1.mode & GEOGRAPHY_GAME_CORRECT_ANSWER) { _local1.check_correct_message_done(); } else if (_local1.mode & GEOGRAPHY_GAME_INCORRECT_ANSWER) { _local1.check_incorrect_message_done(); } } }; GeographyGame.prototype.animate_mascot = function () { var _local1 = this; _local1.timeline.mascot._x = _local1.timeline.mascot._x + _local1.fly_by_speed; _local1.timeline.current_region_name = _local1.regions[_local1.current_region].standardForm(); if ((_local1.timeline.mascot._x - _local1.timeline.mascot._width) >= _local1.screen_width) { _local1.mode = GEOGRAPHY_GAME_WAITING_FOR_USER; _local1.timeline.mascot._x = _local1.original_mascot_x; } }; GeographyGame.prototype.render_map = function () { var _local2 = this; var _local3 = _root; _local2.old_mouse_over_region = _local2.mouse_over_region; var num_checked_regions = 0; for (var j in _local2.timeline.maps) { var _local1 = _local2.timeline.maps[j]; if (((typeof(_local1) == "movieclip") && (_local1.hitTest(_local3._xmouse, _local3._ymouse, true))) && (!_local1.selected)) { _local2.mouse_over_region = _local1; break; } if (typeof(_local1) == "movieclip") { num_checked_regions++; } } if (!_local2.old_mouse_over_region.selected) { _local2.old_mouse_over_region.setColor(_local2.old_mouse_over_region.original_color); } if (!_local2.mouse_over_region.selected) { _local2.mouse_over_region.setColor(_local2.rollover_color); } if ((num_checked_regions == _local2.num_total_map_regions) && (!_local2.old_mouse_over_region.selected)) { _local2.old_mouse_over_region.setColor(_local2.old_mouse_over_region.original_color); } }; GeographyGame.prototype.mouse_click = function () { var _local1 = this; var _local3 = _root; if ((_local1.mode & GEOGRAPHY_GAME_WAITING_FOR_USER) || (_local1.mode & GEOGRAPHY_GAME_DISPLAYING_REGION)) { for (var j in _local1.timeline.maps) { var _local2 = _local1.timeline.maps[j]; if (_local2.hitTest(_local3._xmouse, _local3._ymouse, true) && (!_local2.selected)) { _local1.evaluate_guess(_local2); _local1.timeline.mascot._x = _local1.original_mascot_x; return; } } } }; GeographyGame.prototype.evaluate_guess = function (region_mc) { var _local1 = this; var _local2 = region_mc; if (_local2._name == _local1.regions[_local1.current_region]) { _local1.player_guessed_correctly(_local2); } else { _local1.player_guessed_incorrectly(_local2); } }; GeographyGame.prototype.player_guessed_correctly = function (region_mc) { var _local1 = this; var _local2 = region_mc; _local1.score = _local1.score + _local1.points_correct_answer; _local1.timeline.score = _local1.score; _local2.selected = true; _local2.setColor(_local1.guessed_color); _local2._alpha = _local1.guessed_alpha; _local1.regions.splice(_local1.current_region, 1); _local1.mode = GEOGRAPHY_GAME_CORRECT_ANSWER; _local1.create_correct_answer_message(); }; GeographyGame.prototype.player_guessed_incorrectly = function (region_mc) { var _local1 = this; _local1.score = _local1.score + _local1.points_incorrect_answer; _local1.timeline.score = _local1.score; region_mc.setColor(region_mc.original_color); if (_local1.region_cycle == "Guess Once and Remove") { _local1.regions.splice(_local1.current_region, 1); _local1.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } else if (_local1.region_cycle == "Guess Once and Cycle") { _local1.regions.push(_local1.regions[_local1.current_region]); _local1.regions.splice(_local1.current_region, 1); _local1.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } else if (_local1.region_cycle == "Guess Many Times") { _local1.mode = GEOGRAPHY_GAME_INCORRECT_ANSWER; } if ((_local1.turn_mode == "Turns Reset Every Level") || (_local1.turn_mode == "One Set of Turns")) { _local1.num_player_turns--; _local1.timeline.turns_remaining = _local1.num_player_turns; if (_local1.num_player_turns < 0) { _root.gotoAndStop(_root._totalframes); } } _local1.create_incorrect_answer_message(); }; GeographyGame.prototype.create_correct_answer_message = function () { var _local1 = this; _local1.timeline.attachMovie("correct_gg", "message", 2); _local1.timeline.message._x = _local1.timeline.maps._x; _local1.timeline.message._y = _local1.timeline.maps._y; _local1.timeline.message.play(); var _local2 = new Sound(); _local2.attachSound(_local1.correct_sound_linkage); _local2.start(0, 0); }; GeographyGame.prototype.create_incorrect_answer_message = function () { var _local1 = this; _local1.timeline.attachMovie("incorrect_gg", "message", 2); _local1.timeline.message._x = _local1.timeline.maps._x; _local1.timeline.message._y = _local1.timeline.maps._y; _local1.timeline.message.play(); var _local2 = new Sound(); _local2.attachSound(_local1.incorrect_sound_linkage); _local2.start(0, 0); }; GeographyGame.prototype.check_correct_message_done = function () { var _local1 = this; if (_local1.timeline.message._currentframe == _local1.timeline.message._totalframes) { _local1.timeline.message.removeMovieClip(); _local1.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; _local1.timeline.mascot.field = _local1.regions[_local1.current_region].standardForm(); _local1.check_map_status(); } }; GeographyGame.prototype.check_incorrect_message_done = function () { var _local1 = this; if (_local1.timeline.message._currentframe == _local1.timeline.message._totalframes) { _local1.timeline.message.removeMovieClip(); if (_local1.region_cycle == "Guess Many Times") { _local1.mode = GEOGRAPHY_GAME_WAITING_FOR_USER; } else { _local1.mode = GEOGRAPHY_GAME_DISPLAYING_REGION; _local1.timeline.mascot.field = _local1.regions[_local1.current_region].standardForm(); } _local1.check_map_status(); } }; GeographyGame.prototype.check_map_status = function () { var _local1 = this; if (_local1.regions.length == 0) { _local1.current_map++; _local1.initialize(); } }; game = new GeographyGame();
Instance of Symbol 179 MovieClip in Symbol 180 MovieClip [GeographyGameComponent] Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (mouseDown) { _parent.game.mouse_click(); } onClipEvent (enterFrame) { _parent.game.action(); }
Symbol 197 MovieClip Frame 1
stop();
Instance of Symbol 196 MovieClip "swfloader" in Symbol 197 MovieClip Frame 1
onClipEvent (load) { function strip_spaces(str) { var _local2 = str; var _local3 = new String(""); var _local1 = 0; while (_local1 < _local2.length) { if ((_local2.charAt(_local1) != " ") && (_local2.charAt(_local1) != ";")) { _local3 = _local3 + _local2.charAt(_local1); } _local1++; } return(_local3); } function simple_script(action, timeline) { action = strip_spaces(action); if ((action.length > 0) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) { var _local3 = action.split("."); var timeline_action = _local3.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 _local2 = timeline; var _local1 = 0; while (_local1 < _local3.length) { _local2 = _local2[_local3[_local1]]; _local1++; } if (function_parameter.indexOf("\"") != -1) { function_parameter = function_parameter.substr(1, function_parameter.length - 2); } _local2[timeline_function](function_parameter); } } function execute_action() { var _local1 = _parent; unloaded = true; _local1._visible = false; simple_script(_local1.play_action_val, _local1); } _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) { switch (_parent.xin_motion_val) { case "Up" : _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) { switch (_parent.xin_motion_val) { case "Toward" : _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_x - _parent._x) > Math.abs(orig_y - _parent._y)) { _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") && (Math.abs(_parent._alpha - orig_a) <= 1)) || (((_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 ((rl > 10) && (rt > 10)) { 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) { switch (_parent.xout_motion_val) { case "Down" : 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 "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 (_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 "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 (Math.abs(perc_fadeout - 100) > 1) { break; } execute_action(); } if (!(_parent.xout_alphatype_val === "Yes")) { } else { _parent._alpha = (orig_a / 100) * (100 - perc_fadeout); } } else { execute_action(); } }
Symbol 206 MovieClip Frame 1
_parent.stop();
Symbol 206 MovieClip Frame 65
stop(); _parent.play();
Symbol 215 Button
on (press) { gotoAndPlay (1); }
Symbol 226 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-australia", "_top"); }
Symbol 228 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-usa", "_top"); }
Symbol 230 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-south-america", "_top"); }
Symbol 232 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-central-america", "_top"); }
Symbol 234 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-canada", "_top"); }
Symbol 236 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-africa", "_top"); }
Symbol 238 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-middle-east", "_top"); }
Symbol 241 Button
on (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 GraphicUsed by:5
Symbol 5 MovieClip [stuff5]Uses:4Used by:61
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClip [stuff4]Uses:6Used by:61
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClip [stuff3]Uses:8Used by:61
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClip [stuff2]Uses:10Used by:61
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClip [stuff1]Uses:12Used by:61
Symbol 14 GraphicUsed by:61
Symbol 15 FontUsed 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 EditableTextUses:15Used by:61
Symbol 17 EditableTextUses:15Used by:61
Symbol 18 EditableTextUses:15Used by:61
Symbol 19 EditableTextUses:15Used by:61
Symbol 20 EditableTextUses:15Used by:61
Symbol 21 EditableTextUses:15Used by:61
Symbol 22 EditableTextUses:15Used by:61
Symbol 23 EditableTextUses:15Used by:61
Symbol 24 EditableTextUses:15Used by:61
Symbol 25 EditableTextUses:15Used by:61
Symbol 26 EditableTextUses:15Used by:61
Symbol 27 EditableTextUses:15Used by:61
Symbol 28 EditableTextUses:15Used by:61
Symbol 29 EditableTextUses:15Used by:61
Symbol 30 EditableTextUses:15Used by:61
Symbol 31 EditableTextUses:15Used by:61
Symbol 32 EditableTextUses:15Used by:61
Symbol 33 EditableTextUses:15Used by:61
Symbol 34 EditableTextUses:15Used by:61
Symbol 35 EditableTextUses:15Used by:61
Symbol 36 EditableTextUses:15Used by:61
Symbol 37 EditableTextUses:15Used by:61
Symbol 38 EditableTextUses:15Used by:61
Symbol 39 EditableTextUses:15Used by:61
Symbol 40 EditableTextUses:15Used by:61
Symbol 41 EditableTextUses:15Used by:61
Symbol 42 EditableTextUses:15Used by:61
Symbol 43 EditableTextUses:15Used by:61
Symbol 44 EditableTextUses:15Used by:61
Symbol 45 EditableTextUses:15Used by:61
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:61
Symbol 48 EditableTextUses:15Used by:61
Symbol 49 EditableTextUses:15Used by:61
Symbol 50 EditableTextUses:15Used by:61
Symbol 51 EditableTextUses:15Used by:61
Symbol 52 EditableTextUses:15Used by:61
Symbol 53 EditableTextUses:15Used by:61
Symbol 54 EditableTextUses:15Used by:61
Symbol 55 EditableTextUses:15Used by:58
Symbol 56 GraphicUsed by:58
Symbol 57 GraphicUsed by:58
Symbol 58 ButtonUses:55 56 57Used by:61
Symbol 59 EditableTextUses:15Used by:61
Symbol 60 GraphicUsed 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 GraphicUsed by:63
Symbol 63 MovieClip [splatter4]Uses:62
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClip [splatter3]Uses:64
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClip [splatter2]Uses:66
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClip [splatter1]Uses:68
Symbol 70 GraphicUsed by:83
Symbol 71 GraphicUsed by:74
Symbol 72 GraphicUsed by:74
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:71 72 73Used by:83
Symbol 75 GraphicUsed by:83
Symbol 76 GraphicUsed by:81
Symbol 77 GraphicUsed by:81
Symbol 78 GraphicUsed by:81
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:76 77 78 79 80Used by:83
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:70 74 75 81 82Used by:86
Symbol 84 FontUsed by:85 176 177 178 218
Symbol 85 EditableTextUses:84Used by:86
Symbol 86 MovieClip [mascot_gg]Uses:83 85
Symbol 87 GraphicUsed by:89
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClip [correct_gg]Uses:87 88
Symbol 90 GraphicUsed by:92
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClip [incorrect_gg]Uses:90 91
Symbol 93 GraphicUsed by:166
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:166
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:166
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:166
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:166
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:166
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:166
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:166
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:166
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:166
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:166
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:166
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:166
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:166
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:166
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:166
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:166
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:166
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:166
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:166
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:166
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:166
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:166
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:166
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:140Used by:166
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:166
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:166
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:166
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:166
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:166
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:166
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:166
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:156Used by:166
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158Used by:166
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:160Used by:166
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:166
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:166
Symbol 166 MovieClip [maps_gg]Uses:93 95 97 99 101 103 105 107 109 111 113 115 117 119 121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165Used by:180
Symbol 167 GraphicUsed by:180
Symbol 168 GraphicUsed by:180
Symbol 169 GraphicUsed by:175
Symbol 170 GraphicUsed by:175
Symbol 171 GraphicUsed by:175
Symbol 172 GraphicUsed by:175
Symbol 173 SoundUsed by:175
Symbol 174 SoundUsed by:175
Symbol 175 ButtonUses:169 170 171 172 173 174Used by:180
Symbol 176 EditableTextUses:84Used by:180
Symbol 177 EditableTextUses:84Used by:180
Symbol 178 TextUses:84Used by:179
Symbol 179 MovieClipUses:178Used by:180
Symbol 180 MovieClip [GeographyGameComponent]Uses:166 167 168 175 176 177 179Used by:Timeline
Symbol 181 GraphicUsed by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:192
Symbol 184 GraphicUsed by:185
Symbol 185 MovieClipUses:184Used by:192
Symbol 186 GraphicUsed by:192
Symbol 187 ShapeTweeningUsed by:192
Symbol 188 GraphicUsed by:192
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:192
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClipUses:183 185 186 187 188 190 191Used by:197
Symbol 193 FontUsed by:194 208 225 227 229 231 233 235 237 240
Symbol 194 EditableTextUses:193Used by:195
Symbol 195 MovieClipUses:194Used by:197
Symbol 196 MovieClipUsed by:197
Symbol 197 MovieClipUses:192 195 196Used by:Timeline
Symbol 198 GraphicUsed by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 GraphicUsed by:206
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:202Used by:206
Symbol 204 SoundUsed by:206
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:201 203 204 205Used by:Timeline
Symbol 207 GraphicUsed by:Timeline
Symbol 208 TextUses:193Used by:Timeline
Symbol 209 GraphicUsed by:Timeline
Symbol 210 GraphicUsed by:215
Symbol 211 GraphicUsed by:215
Symbol 212 GraphicUsed by:215
Symbol 213 GraphicUsed by:215
Symbol 214 GraphicUsed by:215
Symbol 215 ButtonUses:210 211 212 213 214Used by:Timeline
Symbol 216 GraphicUsed by:Timeline
Symbol 217 GraphicUsed by:Timeline
Symbol 218 EditableTextUses:84Used by:Timeline
Symbol 219 GraphicUsed by:Timeline
Symbol 220 GraphicUsed by:Timeline
Symbol 221 GraphicUsed by:Timeline
Symbol 222 GraphicUsed by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 GraphicUsed by:226 228 230 232 234 236 238
Symbol 225 TextUses:193Used by:226
Symbol 226 ButtonUses:224 225Used by:Timeline
Symbol 227 TextUses:193Used by:228
Symbol 228 ButtonUses:224 227Used by:Timeline
Symbol 229 TextUses:193Used by:230
Symbol 230 ButtonUses:224 229Used by:Timeline
Symbol 231 TextUses:193Used by:232
Symbol 232 ButtonUses:224 231Used by:Timeline
Symbol 233 TextUses:193Used by:234
Symbol 234 ButtonUses:224 233Used by:Timeline
Symbol 235 TextUses:193Used by:236
Symbol 236 ButtonUses:224 235Used by:Timeline
Symbol 237 TextUses:193Used by:238
Symbol 238 ButtonUses:224 237Used by:Timeline
Symbol 239 GraphicUsed by:241
Symbol 240 TextUses:193Used by:241
Symbol 241 ButtonUses:239 240Used by:Timeline

Instance Names

"Iceland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 95 MovieClip
"Spain"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 97 MovieClip
"Norway"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 99 MovieClip
"Sweden"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 101 MovieClip
"Finland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 103 MovieClip
"England"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 105 MovieClip
"Ireland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 107 MovieClip
"NorthernIreland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 109 MovieClip
"France"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 111 MovieClip
"Italy"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 113 MovieClip
"Switzerland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 115 MovieClip
"Netherlands"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 117 MovieClip
"Belgium"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 119 MovieClip
"Germany"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 121 MovieClip
"Austria"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 123 MovieClip
"CzechRepublic"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 125 MovieClip
"Poland"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 127 MovieClip
"Slovakia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 129 MovieClip
"Hungary"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 131 MovieClip
"Slovenia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 133 MovieClip
"Croatia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 135 MovieClip
"BosniaAndHerzegovina"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 137 MovieClip
"Romania"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 139 MovieClip
"Moldova"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 141 MovieClip
"Yugoslavia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 143 MovieClip
"Bulgaria"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 145 MovieClip
"Macedonia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 147 MovieClip
"Albania"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 149 MovieClip
"Greece"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 151 MovieClip
"Denmark"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 153 MovieClip
"Portugal"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 155 MovieClip
"RussianFederation"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 157 MovieClip
"Lithuania"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 159 MovieClip
"Belarus"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 161 MovieClip
"Latvia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 163 MovieClip
"Estonia"Symbol 166 MovieClip [maps_gg] Frame 1Symbol 165 MovieClip
"maps"Symbol 180 MovieClip [GeographyGameComponent] Frame 1Symbol 166 MovieClip [maps_gg]
"anim"Symbol 197 MovieClip Frame 1Symbol 192 MovieClip
"perc"Symbol 197 MovieClip Frame 1Symbol 195 MovieClip
"swfloader"Symbol 197 MovieClip Frame 1Symbol 196 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "correct_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "Cepret"
ExportAssets (56)Timeline Frame 1Symbol 3 as "incorrect_sound"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 13 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 9 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 7 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 61 as "intructionmc"
ExportAssets (56)Timeline Frame 1Symbol 63 as "splatter4"
ExportAssets (56)Timeline Frame 1Symbol 65 as "splatter3"
ExportAssets (56)Timeline Frame 1Symbol 67 as "splatter2"
ExportAssets (56)Timeline Frame 1Symbol 69 as "splatter1"
ExportAssets (56)Timeline Frame 1Symbol 86 as "mascot_gg"
ExportAssets (56)Timeline Frame 1Symbol 89 as "correct_gg"
ExportAssets (56)Timeline Frame 1Symbol 92 as "incorrect_gg"
ExportAssets (56)Timeline Frame 1Symbol 166 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 166 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 180 as "GeographyGameComponent"
ExportAssets (56)Timeline Frame 21Symbol 180 as "GeographyGameComponent"

Dynamic Text Variables

fieldSymbol 85 EditableText"MESSAGE"
scoreSymbol 176 EditableText"SCORE"
current_region_nameSymbol 177 EditableText""
textSymbol 194 EditableText""
scoreSymbol 218 EditableText""




http://swfchan.com/6/25228/info.shtml
Created: 11/8 -2019 20:28:16 Last modified: 11/8 -2019 20:28:16 Server time: 29/04 -2024 08:39:51