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

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

Geography Game - Africa.swf

This is the info page for
Flash #22795

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


Text
MESSAGE

SCORE

Geography Game

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

Full version can only be played at
URGames.com. Webmasters -
Please only use the version
provided on
GamesForYourWebsite.com.

Play More Games

Play More Games

Play More Games

Play More Games

Play More Games

Play More Games

Put This On Your Site

Put This On Your Site

Put This On Your Site

Put This On Your Site

Put This On Your Site

Put This On Your Site

SPLAT

SPLAT

Play Hi-Quality

Play Hi-Quality

Play Hi-Quality

Play Hi-Quality

Play Hi-Quality

Play Hi-Quality

Play Low-
Quality

Play Low-
Quality

Play Low-
Quality

Play Low-
Quality

Play Low-
Quality

Play Low-
Quality

Instructions

Instructions

Instructions

Instructions

Instructions

Instructions

EM

EM

Play Europe Version

Play USA Version

Play South America Version

Play Central America Version

Play Canada Version

Play Australia Version

Play Middle East Version

Put This On Your Site

ActionScript [AS1/AS2]

Instance of Symbol 207 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 23
stop();
Instance of Symbol 124 MovieClip [GeographyGameComponent] in Frame 23
//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 119 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 124 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 123 MovieClip in Symbol 124 MovieClip [GeographyGameComponent] Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (mouseDown) { _parent.game.mouse_click(); } onClipEvent (enterFrame) { _parent.game.action(); }
Symbol 179 Button
on (release) { _parent.gotoAndStop("mainmenu"); }
Symbol 207 MovieClip Frame 1
stop();
Instance of Symbol 206 MovieClip "swfloader" in Symbol 207 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 243 Button
on (release) { getURL ("http://www.URGames.com/?splatthem", "_blank"); }
Symbol 251 Button
on (release) { getURL ("http://www.GamesForYourWebsite.com/?splatthem", "_blank"); }
Symbol 261 Button
on (release) { _quality = "BEST"; _root.play(); }
Symbol 268 Button
on (release) { _quality = "MEDIUM"; _root.play(); }
Symbol 275 Button
on (release) { gotoAndStop ("instruction"); }
Symbol 279 MovieClip Frame 1
if (_root.backfromgame) { gotoAndPlay (50); stopAllSounds(); }
Symbol 279 MovieClip Frame 68
stop();
Symbol 287 Button
on (press) { gotoAndPlay (1); }
Symbol 298 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-europe", "_top"); }
Symbol 300 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-usa", "_top"); }
Symbol 302 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-south-america", "_top"); }
Symbol 304 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-central-america", "_top"); }
Symbol 306 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-canada", "_top"); }
Symbol 308 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-australia", "_top"); }
Symbol 310 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-middle-east", "_top"); }
Symbol 313 Button
on (release) { getURL ("http://www.gamesforyourwebsite.com", "_top"); }

Library Items

Symbol 1 Sound [correct_sound]
Symbol 2 Sound [incorrect_sound]
Symbol 3 Sound [Cepret]Used by:279
Symbol 4 GraphicUsed by:17
Symbol 5 GraphicUsed by:8
Symbol 6 GraphicUsed by:8
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:5 6 7Used by:17
Symbol 9 GraphicUsed by:17
Symbol 10 GraphicUsed by:15
Symbol 11 GraphicUsed by:15
Symbol 12 GraphicUsed by:15
Symbol 13 GraphicUsed by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:10 11 12 13 14Used by:17
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:4 8 9 15 16Used by:20
Symbol 18 FontUsed by:19 120 121 122 290
Symbol 19 EditableTextUses:18Used by:20
Symbol 20 MovieClip [mascot_gg]Uses:17 19
Symbol 21 GraphicUsed by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip [correct_gg]Uses:21 22
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip [incorrect_gg]Uses:24 25
Symbol 27 GraphicUsed by:110
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:110
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:110
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:110
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:110
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:110
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:110
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:110
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:110
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:110
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:110
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:110
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:110
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:110
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:110
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:110
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:110
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:110
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:110
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:110
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:110
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:110
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:110
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:110
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:110
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:110
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:110
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:110
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:110
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:110
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:110
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:110
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:110
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:110
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:110
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:110
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:110
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:110
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:110
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:110
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:110
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110
Symbol 110 MovieClip [maps_gg]Uses:27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 101 103 105 107 109Used by:124
Symbol 111 GraphicUsed by:124
Symbol 112 GraphicUsed by:124
Symbol 113 GraphicUsed by:119
Symbol 114 GraphicUsed by:119
Symbol 115 GraphicUsed by:119
Symbol 116 GraphicUsed by:119
Symbol 117 SoundUsed by:119
Symbol 118 SoundUsed by:119
Symbol 119 ButtonUses:113 114 115 116 117 118Used by:124
Symbol 120 EditableTextUses:18Used by:124
Symbol 121 EditableTextUses:18Used by:124
Symbol 122 TextUses:18Used by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClip [GeographyGameComponent]Uses:110 111 112 119 120 121 123Used by:Timeline
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClip [stuff5]Uses:125Used by:182
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClip [stuff4]Uses:127Used by:182
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClip [stuff3]Uses:129Used by:182
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClip [stuff2]Uses:131Used by:182
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClip [stuff1]Uses:133Used by:182
Symbol 135 GraphicUsed by:182
Symbol 136 FontUsed by:137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 169 170 171 172 173 174 175 176 180 214 236 237 238 239 240 241 244 245 246 247 248 249 252 253 254 255 256 257 258 259 262 263 264 265 266 267 269 270 271 272 273 274 277 278
Symbol 137 EditableTextUses:136Used by:182
Symbol 138 EditableTextUses:136Used by:182
Symbol 139 EditableTextUses:136Used by:182
Symbol 140 EditableTextUses:136Used by:182
Symbol 141 EditableTextUses:136Used by:182
Symbol 142 EditableTextUses:136Used by:182
Symbol 143 EditableTextUses:136Used by:182
Symbol 144 EditableTextUses:136Used by:182
Symbol 145 EditableTextUses:136Used by:182
Symbol 146 EditableTextUses:136Used by:182
Symbol 147 EditableTextUses:136Used by:182
Symbol 148 EditableTextUses:136Used by:182
Symbol 149 EditableTextUses:136Used by:182
Symbol 150 EditableTextUses:136Used by:182
Symbol 151 EditableTextUses:136Used by:182
Symbol 152 EditableTextUses:136Used by:182
Symbol 153 EditableTextUses:136Used by:182
Symbol 154 EditableTextUses:136Used by:182
Symbol 155 EditableTextUses:136Used by:182
Symbol 156 EditableTextUses:136Used by:182
Symbol 157 EditableTextUses:136Used by:182
Symbol 158 EditableTextUses:136Used by:182
Symbol 159 EditableTextUses:136Used by:182
Symbol 160 EditableTextUses:136Used by:182
Symbol 161 EditableTextUses:136Used by:182
Symbol 162 EditableTextUses:136Used by:182
Symbol 163 EditableTextUses:136Used by:182
Symbol 164 EditableTextUses:136Used by:182
Symbol 165 EditableTextUses:136Used by:182
Symbol 166 EditableTextUses:136Used by:182
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:182
Symbol 169 EditableTextUses:136Used by:182
Symbol 170 EditableTextUses:136Used by:182
Symbol 171 EditableTextUses:136Used by:182
Symbol 172 EditableTextUses:136Used by:182
Symbol 173 EditableTextUses:136Used by:182
Symbol 174 EditableTextUses:136Used by:182
Symbol 175 EditableTextUses:136Used by:182
Symbol 176 EditableTextUses:136Used by:179
Symbol 177 GraphicUsed by:179
Symbol 178 GraphicUsed by:179
Symbol 179 ButtonUses:176 177 178Used by:182
Symbol 180 EditableTextUses:136Used by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClip [intructionmc]Uses:135 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 134 132 130 128 126 161 162 163 164 165 166 168 169 170 171 172 173 174 175 179 180 181Used by:279
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClip [splatter4]Uses:183Used by:279
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClip [splatter3]Uses:185Used by:279
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClip [splatter2]Uses:187Used by:279
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClip [splatter1]Uses:189Used by:279
Symbol 191 GraphicUsed by:Timeline
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:202
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:202
Symbol 196 GraphicUsed by:202
Symbol 197 ShapeTweeningUsed by:202
Symbol 198 GraphicUsed by:202
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:202
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:193 195 196 197 198 200 201Used by:207
Symbol 203 FontUsed by:204 297 299 301 303 305 307 309 312
Symbol 204 EditableTextUses:203Used by:205
Symbol 205 MovieClipUses:204Used by:207
Symbol 206 MovieClipUsed by:207
Symbol 207 MovieClipUses:202 205 206Used by:Timeline
Symbol 208 GraphicUsed by:Timeline
Symbol 209 GraphicUsed by:Timeline
Symbol 210 GraphicUsed by:279  Timeline
Symbol 211 GraphicUsed by:215 279  Timeline
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:215 279  Timeline
Symbol 214 EditableTextUses:136Used by:215
Symbol 215 MovieClipUses:211 213 214Used by:Timeline
Symbol 216 SoundUsed by:279
Symbol 217 GraphicUsed by:279
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:279
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:279
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:279
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:279
Symbol 226 BitmapUsed by:227
Symbol 227 GraphicUses:226Used by:279
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:228Used by:279
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:279
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:279
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:279
Symbol 236 EditableTextUses:136Used by:243
Symbol 237 EditableTextUses:136Used by:243
Symbol 238 EditableTextUses:136Used by:243
Symbol 239 EditableTextUses:136Used by:243
Symbol 240 EditableTextUses:136Used by:243
Symbol 241 EditableTextUses:136Used by:243
Symbol 242 GraphicUsed by:243
Symbol 243 ButtonUses:236 237 238 239 240 241 242Used by:279
Symbol 244 EditableTextUses:136Used by:251
Symbol 245 EditableTextUses:136Used by:251
Symbol 246 EditableTextUses:136Used by:251
Symbol 247 EditableTextUses:136Used by:251
Symbol 248 EditableTextUses:136Used by:251
Symbol 249 EditableTextUses:136Used by:251
Symbol 250 GraphicUsed by:251
Symbol 251 ButtonUses:244 245 246 247 248 249 250Used by:279
Symbol 252 EditableTextUses:136Used by:279
Symbol 253 EditableTextUses:136Used by:279
Symbol 254 EditableTextUses:136Used by:261
Symbol 255 EditableTextUses:136Used by:261
Symbol 256 EditableTextUses:136Used by:261
Symbol 257 EditableTextUses:136Used by:261
Symbol 258 EditableTextUses:136Used by:261
Symbol 259 EditableTextUses:136Used by:261
Symbol 260 GraphicUsed by:261 268 275
Symbol 261 ButtonUses:254 255 256 257 258 259 260Used by:279
Symbol 262 EditableTextUses:136Used by:268
Symbol 263 EditableTextUses:136Used by:268
Symbol 264 EditableTextUses:136Used by:268
Symbol 265 EditableTextUses:136Used by:268
Symbol 266 EditableTextUses:136Used by:268
Symbol 267 EditableTextUses:136Used by:268
Symbol 268 ButtonUses:262 263 264 265 266 267 260Used by:279
Symbol 269 EditableTextUses:136Used by:275
Symbol 270 EditableTextUses:136Used by:275
Symbol 271 EditableTextUses:136Used by:275
Symbol 272 EditableTextUses:136Used by:275
Symbol 273 EditableTextUses:136Used by:275
Symbol 274 EditableTextUses:136Used by:275
Symbol 275 ButtonUses:269 270 271 272 273 274 260Used by:279
Symbol 276 GraphicUsed by:279
Symbol 277 EditableTextUses:136Used by:279
Symbol 278 EditableTextUses:136Used by:279
Symbol 279 MovieClipUses:210 211 213 216 217 219 221 223 225 227 229 231 233 235 243 251 252 253 190 3 188 261 268 275 186 184 276 277 278 182Used by:Timeline
Symbol 280 GraphicUsed by:Timeline
Symbol 281 GraphicUsed by:Timeline
Symbol 282 GraphicUsed by:287
Symbol 283 GraphicUsed by:287
Symbol 284 GraphicUsed by:287
Symbol 285 GraphicUsed by:287
Symbol 286 GraphicUsed by:287
Symbol 287 ButtonUses:282 283 284 285 286Used by:Timeline
Symbol 288 GraphicUsed by:Timeline
Symbol 289 GraphicUsed by:Timeline
Symbol 290 EditableTextUses:18Used by:Timeline
Symbol 291 GraphicUsed by:Timeline
Symbol 292 GraphicUsed by:Timeline
Symbol 293 GraphicUsed by:Timeline
Symbol 294 GraphicUsed by:Timeline
Symbol 295 GraphicUsed by:Timeline
Symbol 296 GraphicUsed by:298 300 302 304 306 308 310
Symbol 297 TextUses:203Used by:298
Symbol 298 ButtonUses:296 297Used by:Timeline
Symbol 299 TextUses:203Used by:300
Symbol 300 ButtonUses:296 299Used by:Timeline
Symbol 301 TextUses:203Used by:302
Symbol 302 ButtonUses:296 301Used by:Timeline
Symbol 303 TextUses:203Used by:304
Symbol 304 ButtonUses:296 303Used by:Timeline
Symbol 305 TextUses:203Used by:306
Symbol 306 ButtonUses:296 305Used by:Timeline
Symbol 307 TextUses:203Used by:308
Symbol 308 ButtonUses:296 307Used by:Timeline
Symbol 309 TextUses:203Used by:310
Symbol 310 ButtonUses:296 309Used by:Timeline
Symbol 311 GraphicUsed by:313
Symbol 312 TextUses:203Used by:313
Symbol 313 ButtonUses:311 312Used by:Timeline

Instance Names

"errormc"Frame 2Symbol 215 MovieClip
"errormc"Frame 2Symbol 215 MovieClip
"errormc"Frame 2Symbol 215 MovieClip
"errormc"Frame 2Symbol 215 MovieClip
"errormc"Frame 2Symbol 215 MovieClip
"errormc"Frame 2Symbol 215 MovieClip
"Somalia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 29 MovieClip
"Ethiopia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 31 MovieClip
"Eritrea"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 33 MovieClip
"Egypt"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 35 MovieClip
"Kenya"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 37 MovieClip
"Madgascar"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 39 MovieClip
"SouthAfrica"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 41 MovieClip
"Namibia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 43 MovieClip
"Botswana"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 45 MovieClip
"Zimbabwe"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 47 MovieClip
"Mozambique"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 49 MovieClip
"Zambia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 51 MovieClip
"Tanzania"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 53 MovieClip
"Angola"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 55 MovieClip
"RepublicOfCongo"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 57 MovieClip
"Malawi"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 59 MovieClip
"Uganda"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 61 MovieClip
"Sudan"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 63 MovieClip
"Libya"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 65 MovieClip
"Chad"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 67 MovieClip
"CentralAfricanRepublic"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 69 MovieClip
"Congo"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 71 MovieClip
"Gabon"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 73 MovieClip
"Cameroon"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 75 MovieClip
"Nigeria"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 77 MovieClip
"Niger"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 79 MovieClip
"Benin"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 81 MovieClip
"Togo"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 83 MovieClip
"Ghana"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 85 MovieClip
"CoteDivoire"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 87 MovieClip
"Liberia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 89 MovieClip
"SierraLeone"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 91 MovieClip
"Guinea"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 93 MovieClip
"Senegal"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 95 MovieClip
"BurkinaFaso"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 97 MovieClip
"Mali"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 99 MovieClip
"Mauritania"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 101 MovieClip
"WesternSahara"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 103 MovieClip
"Morocco"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 105 MovieClip
"Algeria"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 107 MovieClip
"Tunisia"Symbol 110 MovieClip [maps_gg] Frame 1Symbol 109 MovieClip
"maps"Symbol 124 MovieClip [GeographyGameComponent] Frame 1Symbol 110 MovieClip [maps_gg]
"anim"Symbol 207 MovieClip Frame 1Symbol 202 MovieClip
"perc"Symbol 207 MovieClip Frame 1Symbol 205 MovieClip
"swfloader"Symbol 207 MovieClip Frame 1Symbol 206 MovieClip
"btnplay2"Symbol 279 MovieClip Frame 60Symbol 261 Button
"btnplay1"Symbol 279 MovieClip Frame 60Symbol 268 Button
"btnplay3"Symbol 279 MovieClip Frame 60Symbol 275 Button
"instmc"Symbol 279 MovieClip Frame 69Symbol 182 MovieClip [intructionmc]

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "correct_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "incorrect_sound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 1Symbol 20 as "mascot_gg"
ExportAssets (56)Timeline Frame 1Symbol 23 as "correct_gg"
ExportAssets (56)Timeline Frame 1Symbol 26 as "incorrect_gg"
ExportAssets (56)Timeline Frame 1Symbol 110 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 110 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 124 as "GeographyGameComponent"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 134 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 132 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 130 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 128 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 126 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 1Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 1Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 1Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 1Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 186 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 184 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 190 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 188 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 182 as "intructionmc"
ExportAssets (56)Timeline Frame 23Symbol 124 as "GeographyGameComponent"

Labels

"mainmenu"Symbol 279 MovieClip Frame 68
"instruction"Symbol 279 MovieClip Frame 69

Dynamic Text Variables

fieldSymbol 19 EditableText"MESSAGE"
scoreSymbol 120 EditableText"SCORE"
current_region_nameSymbol 121 EditableText""
textSymbol 204 EditableText""
scoreSymbol 290 EditableText""




http://swfchan.com/5/22795/info.shtml
Created: 26/5 -2019 17:02:03 Last modified: 26/5 -2019 17:02:03 Server time: 14/05 -2024 03:07:18