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

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

europe.swf

This is the info page for
Flash #25883

(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

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 25
stop();
Instance of Symbol 114 MovieClip [GeographyGameComponent] in Frame 25
//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 109 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 114 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 113 MovieClip in Symbol 114 MovieClip [GeographyGameComponent] Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (mouseDown) { _parent.game.mouse_click(); } onClipEvent (enterFrame) { _parent.game.action(); }
Symbol 169 Button
on (release) { _parent.gotoAndStop("mainmenu"); }
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 233 Button
on (release) { getURL ("http://www.URGames.com/?splatthem", "_blank"); }
Symbol 241 Button
on (release) { getURL ("http://www.GamesForYourWebsite.com/?splatthem", "_blank"); }
Symbol 251 Button
on (release) { _quality = "BEST"; _root.play(); }
Symbol 258 Button
on (release) { _quality = "MEDIUM"; _root.play(); }
Symbol 265 Button
on (release) { gotoAndStop ("instruction"); }
Symbol 269 MovieClip Frame 1
if (_root.backfromgame) { gotoAndPlay (50); stopAllSounds(); }
Symbol 269 MovieClip Frame 68
stop();
Symbol 278 Button
on (press) { gotoAndPlay (1); }
Symbol 289 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-australia", "_top"); }
Symbol 291 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-usa", "_top"); }
Symbol 293 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-south-america", "_top"); }
Symbol 295 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-central-america", "_top"); }
Symbol 297 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-canada", "_top"); }
Symbol 299 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-africa", "_top"); }
Symbol 301 Button
on (release) { getURL ("http://www.urgames.com/games/geography-game-middle-east", "_top"); }
Symbol 304 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:269
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 110 111 112 281
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:100
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:100
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:100
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:100
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:100
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:100
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:100
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:100
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:100
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:100
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:100
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:100
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:100
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:100
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:100
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:100
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:100
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:100
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:100
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:100
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:100
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:100
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:100
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:100
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:100
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:100
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:100
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:100
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:100
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:100
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:100
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:100
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:100
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:100
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:100
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:100
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 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 99Used by:114
Symbol 101 GraphicUsed by:114
Symbol 102 GraphicUsed by:114
Symbol 103 GraphicUsed by:109
Symbol 104 GraphicUsed by:109
Symbol 105 GraphicUsed by:109
Symbol 106 GraphicUsed by:109
Symbol 107 SoundUsed by:109
Symbol 108 SoundUsed by:109
Symbol 109 ButtonUses:103 104 105 106 107 108Used by:114
Symbol 110 EditableTextUses:18Used by:114
Symbol 111 EditableTextUses:18Used by:114
Symbol 112 TextUses:18Used by:113
Symbol 113 MovieClipUses:112Used by:114
Symbol 114 MovieClip [GeographyGameComponent]Uses:100 101 102 109 110 111 113Used by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClip [stuff5]Uses:115Used by:172
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClip [stuff4]Uses:117Used by:172
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClip [stuff3]Uses:119Used by:172
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClip [stuff2]Uses:121Used by:172
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClip [stuff1]Uses:123Used by:172
Symbol 125 GraphicUsed by:172
Symbol 126 FontUsed by:127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 159 160 161 162 163 164 165 166 170 203 226 227 228 229 230 231 234 235 236 237 238 239 242 243 244 245 246 247 248 249 252 253 254 255 256 257 259 260 261 262 263 264 267 268
Symbol 127 EditableTextUses:126Used by:172
Symbol 128 EditableTextUses:126Used by:172
Symbol 129 EditableTextUses:126Used by:172
Symbol 130 EditableTextUses:126Used by:172
Symbol 131 EditableTextUses:126Used by:172
Symbol 132 EditableTextUses:126Used by:172
Symbol 133 EditableTextUses:126Used by:172
Symbol 134 EditableTextUses:126Used by:172
Symbol 135 EditableTextUses:126Used by:172
Symbol 136 EditableTextUses:126Used by:172
Symbol 137 EditableTextUses:126Used by:172
Symbol 138 EditableTextUses:126Used by:172
Symbol 139 EditableTextUses:126Used by:172
Symbol 140 EditableTextUses:126Used by:172
Symbol 141 EditableTextUses:126Used by:172
Symbol 142 EditableTextUses:126Used by:172
Symbol 143 EditableTextUses:126Used by:172
Symbol 144 EditableTextUses:126Used by:172
Symbol 145 EditableTextUses:126Used by:172
Symbol 146 EditableTextUses:126Used by:172
Symbol 147 EditableTextUses:126Used by:172
Symbol 148 EditableTextUses:126Used by:172
Symbol 149 EditableTextUses:126Used by:172
Symbol 150 EditableTextUses:126Used by:172
Symbol 151 EditableTextUses:126Used by:172
Symbol 152 EditableTextUses:126Used by:172
Symbol 153 EditableTextUses:126Used by:172
Symbol 154 EditableTextUses:126Used by:172
Symbol 155 EditableTextUses:126Used by:172
Symbol 156 EditableTextUses:126Used by:172
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:172
Symbol 159 EditableTextUses:126Used by:172
Symbol 160 EditableTextUses:126Used by:172
Symbol 161 EditableTextUses:126Used by:172
Symbol 162 EditableTextUses:126Used by:172
Symbol 163 EditableTextUses:126Used by:172
Symbol 164 EditableTextUses:126Used by:172
Symbol 165 EditableTextUses:126Used by:172
Symbol 166 EditableTextUses:126Used by:169
Symbol 167 GraphicUsed by:169
Symbol 168 GraphicUsed by:169
Symbol 169 ButtonUses:166 167 168Used by:172
Symbol 170 EditableTextUses:126Used by:172
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClip [intructionmc]Uses:125 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 124 122 120 118 116 151 152 153 154 155 156 158 159 160 161 162 163 164 165 169 170 171Used by:269
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClip [splatter4]Uses:173Used by:269
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClip [splatter3]Uses:175Used by:269
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClip [splatter2]Uses:177Used by:269
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClip [splatter1]Uses:179Used by:269
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 271 288 290 292 294 296 298 300 303
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:204 269
Symbol 201 BitmapUsed by:202
Symbol 202 GraphicUses:201Used by:204 269
Symbol 203 EditableTextUses:126Used by:204
Symbol 204 MovieClipUses:200 202 203Used by:Timeline
Symbol 205 GraphicUsed by:269
Symbol 206 SoundUsed by:269
Symbol 207 GraphicUsed by:269
Symbol 208 BitmapUsed by:209
Symbol 209 GraphicUses:208Used by:269
Symbol 210 BitmapUsed by:211
Symbol 211 GraphicUses:210Used by:269
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:269
Symbol 214 BitmapUsed by:215
Symbol 215 GraphicUses:214Used by:269
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:269
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:269
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:269
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:269
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:269
Symbol 226 EditableTextUses:126Used by:233
Symbol 227 EditableTextUses:126Used by:233
Symbol 228 EditableTextUses:126Used by:233
Symbol 229 EditableTextUses:126Used by:233
Symbol 230 EditableTextUses:126Used by:233
Symbol 231 EditableTextUses:126Used by:233
Symbol 232 GraphicUsed by:233
Symbol 233 ButtonUses:226 227 228 229 230 231 232Used by:269
Symbol 234 EditableTextUses:126Used by:241
Symbol 235 EditableTextUses:126Used by:241
Symbol 236 EditableTextUses:126Used by:241
Symbol 237 EditableTextUses:126Used by:241
Symbol 238 EditableTextUses:126Used by:241
Symbol 239 EditableTextUses:126Used by:241
Symbol 240 GraphicUsed by:241
Symbol 241 ButtonUses:234 235 236 237 238 239 240Used by:269
Symbol 242 EditableTextUses:126Used by:269
Symbol 243 EditableTextUses:126Used by:269
Symbol 244 EditableTextUses:126Used by:251
Symbol 245 EditableTextUses:126Used by:251
Symbol 246 EditableTextUses:126Used by:251
Symbol 247 EditableTextUses:126Used by:251
Symbol 248 EditableTextUses:126Used by:251
Symbol 249 EditableTextUses:126Used by:251
Symbol 250 GraphicUsed by:251 258 265
Symbol 251 ButtonUses:244 245 246 247 248 249 250Used by:269
Symbol 252 EditableTextUses:126Used by:258
Symbol 253 EditableTextUses:126Used by:258
Symbol 254 EditableTextUses:126Used by:258
Symbol 255 EditableTextUses:126Used by:258
Symbol 256 EditableTextUses:126Used by:258
Symbol 257 EditableTextUses:126Used by:258
Symbol 258 ButtonUses:252 253 254 255 256 257 250Used by:269
Symbol 259 EditableTextUses:126Used by:265
Symbol 260 EditableTextUses:126Used by:265
Symbol 261 EditableTextUses:126Used by:265
Symbol 262 EditableTextUses:126Used by:265
Symbol 263 EditableTextUses:126Used by:265
Symbol 264 EditableTextUses:126Used by:265
Symbol 265 ButtonUses:259 260 261 262 263 264 250Used by:269
Symbol 266 GraphicUsed by:269
Symbol 267 EditableTextUses:126Used by:269
Symbol 268 EditableTextUses:126Used by:269
Symbol 269 MovieClipUses:205 200 202 206 207 209 211 213 215 217 219 221 223 225 233 241 242 243 180 3 178 251 258 265 176 174 266 267 268 172Used by:Timeline
Symbol 270 GraphicUsed by:Timeline
Symbol 271 TextUses:193Used by:Timeline
Symbol 272 GraphicUsed by:Timeline
Symbol 273 GraphicUsed by:278
Symbol 274 GraphicUsed by:278
Symbol 275 GraphicUsed by:278
Symbol 276 GraphicUsed by:278
Symbol 277 GraphicUsed by:278
Symbol 278 ButtonUses:273 274 275 276 277Used by:Timeline
Symbol 279 GraphicUsed by:Timeline
Symbol 280 GraphicUsed by:Timeline
Symbol 281 EditableTextUses:18Used by:Timeline
Symbol 282 GraphicUsed by:Timeline
Symbol 283 GraphicUsed by:Timeline
Symbol 284 GraphicUsed by:Timeline
Symbol 285 GraphicUsed by:Timeline
Symbol 286 GraphicUsed by:Timeline
Symbol 287 GraphicUsed by:289 291 293 295 297 299 301
Symbol 288 TextUses:193Used by:289
Symbol 289 ButtonUses:287 288Used by:Timeline
Symbol 290 TextUses:193Used by:291
Symbol 291 ButtonUses:287 290Used by:Timeline
Symbol 292 TextUses:193Used by:293
Symbol 293 ButtonUses:287 292Used by:Timeline
Symbol 294 TextUses:193Used by:295
Symbol 295 ButtonUses:287 294Used by:Timeline
Symbol 296 TextUses:193Used by:297
Symbol 297 ButtonUses:287 296Used by:Timeline
Symbol 298 TextUses:193Used by:299
Symbol 299 ButtonUses:287 298Used by:Timeline
Symbol 300 TextUses:193Used by:301
Symbol 301 ButtonUses:287 300Used by:Timeline
Symbol 302 GraphicUsed by:304
Symbol 303 TextUses:193Used by:304
Symbol 304 ButtonUses:302 303Used by:Timeline

Instance Names

"errormc"Frame 2Symbol 204 MovieClip
"Iceland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 29 MovieClip
"Spain"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 31 MovieClip
"Norway"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 33 MovieClip
"Sweden"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 35 MovieClip
"Finland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 37 MovieClip
"England"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 39 MovieClip
"Ireland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 41 MovieClip
"NorthernIreland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 43 MovieClip
"France"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 45 MovieClip
"Italy"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 47 MovieClip
"Switzerland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 49 MovieClip
"Netherlands"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 51 MovieClip
"Belgium"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 53 MovieClip
"Germany"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 55 MovieClip
"Austria"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 57 MovieClip
"CzechRepublic"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 59 MovieClip
"Poland"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 61 MovieClip
"Slovakia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 63 MovieClip
"Hungary"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 65 MovieClip
"Slovenia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 67 MovieClip
"Croatia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 69 MovieClip
"BosniaAndHerzegovina"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 71 MovieClip
"Romania"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 73 MovieClip
"Moldova"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 75 MovieClip
"Yugoslavia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 77 MovieClip
"Bulgaria"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 79 MovieClip
"Macedonia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 81 MovieClip
"Albania"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 83 MovieClip
"Greece"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 85 MovieClip
"Denmark"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 87 MovieClip
"Portugal"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 89 MovieClip
"RussianFederation"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 91 MovieClip
"Lithuania"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 93 MovieClip
"Belarus"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 95 MovieClip
"Latvia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 97 MovieClip
"Estonia"Symbol 100 MovieClip [maps_gg] Frame 1Symbol 99 MovieClip
"maps"Symbol 114 MovieClip [GeographyGameComponent] Frame 1Symbol 100 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
"btnplay2"Symbol 269 MovieClip Frame 60Symbol 251 Button
"btnplay1"Symbol 269 MovieClip Frame 60Symbol 258 Button
"btnplay3"Symbol 269 MovieClip Frame 60Symbol 265 Button
"instmc"Symbol 269 MovieClip Frame 69Symbol 172 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 100 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 100 as "maps_gg"
ExportAssets (56)Timeline Frame 1Symbol 114 as "GeographyGameComponent"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 124 as "stuff1"
ExportAssets (56)Timeline Frame 1Symbol 122 as "stuff2"
ExportAssets (56)Timeline Frame 1Symbol 120 as "stuff3"
ExportAssets (56)Timeline Frame 1Symbol 118 as "stuff4"
ExportAssets (56)Timeline Frame 1Symbol 116 as "stuff5"
ExportAssets (56)Timeline Frame 1Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 1Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 1Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 1Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 1Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 3 as "Cepret"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 176 as "splatter3"
ExportAssets (56)Timeline Frame 2Symbol 174 as "splatter4"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 180 as "splatter1"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 178 as "splatter2"
ExportAssets (56)Timeline Frame 2Symbol 172 as "intructionmc"
ExportAssets (56)Timeline Frame 25Symbol 114 as "GeographyGameComponent"

Labels

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

Dynamic Text Variables

fieldSymbol 19 EditableText"MESSAGE"
scoreSymbol 110 EditableText"SCORE"
current_region_nameSymbol 111 EditableText""
textSymbol 194 EditableText""
scoreSymbol 281 EditableText""




http://swfchan.com/6/25883/info.shtml
Created: 23/5 -2019 06:55:30 Last modified: 23/5 -2019 06:55:30 Server time: 02/05 -2024 23:45:57