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

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

funnies_hangman.swf

This is the info page for
Flash #29347

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


Text
Loading ...

<P ALIGN="LEFT"></P>

Sorry,
You Lose!

Sorry,
You Lose!

PLAY AGAIN?



You Win!

You Win!




ActionScript [AS1/AS2]

Instance of Symbol 161 MovieClip in Frame 1
onClipEvent (enterFrame) { if (0 < _root.getBytesTotal()) { if (_root.getBytesLoaded() == _root.getBytesTotal()) { _root.play(); } else { var progress = Math.round(100 * (_root.getBytesLoaded() / _root.getBytesTotal())); gotoAndStop(progress); } } }
Frame 43
stop();
Instance of Symbol 8 MovieClip [hangman_component] in Frame 43
onClipEvent (load) { data_file = "funnies_hangman.txt"; animation_mc = "animations"; animation_x = 155; animation_y = 140; keyboard_x = 452; keyboard_y = 155; keyboard_mc = "keyboard"; num_keyboard_columns = 7; key_space_x = 5; key_space_y = 5; phrase_mc = "phrase"; phrase_x = 320; phrase_y = 315; phrase_space_x = 5; phrase_space_y = 5; num_letters_line = 16; font_name = "MyriaMM_830 BL 700 SE"; font_size = 16; font_color = "0xF4E084"; correct_sound = "correct"; incorrect_sound = "incorrect"; random_phrase = "true"; hint_x = 700; hint_y = 295; }
Frame 45
stop();
Symbol 8 MovieClip [hangman_component] Frame 1
Array.prototype.swap_elements = function (a, b) { if (a == b) { return(undefined); } this[a] = this[a] ^ this[b]; this[b] = this[b] ^ this[a]; this[a] = this[a] ^ this[b]; }; Array.prototype.randomize = function () { var j = 0; while (j < this.length) { this.swap_elements(Math.floor(Math.random() * this.length), Math.floor(Math.random() * this.length)); j++; } }; Array.prototype.find_element = function (element) { var j = 0; while (j < this.length) { if (this[j] == element) { return(true); } j++; } return(false); }; this._x = 0; this._y = 0; Hangman = function () { this.current_phrase = 0; this.num_wrong_guesses = 0; this.correct_guess_sound = new Sound(); this.incorrect_guess_sound = new Sound(); this.correct_guess_sound.attachSound(this.correct_sound); this.incorrect_guess_sound.attachSound(this.incorrect_sound); this.between_phrases = false; this.guess_list = new Array(); this.load_data(); }; Hangman.prototype.data_file = data_file; Hangman.prototype.game_lose_scene = game_lose_scene; Hangman.prototype.game_win_scene = game_win_scene; Hangman.prototype.animation_mc = animation_mc; Hangman.prototype.animation_x = animation_x; Hangman.prototype.animation_y = animation_y; Hangman.prototype.keyboard_x = keyboard_x; Hangman.prototype.keyboard_y = keyboard_y; Hangman.prototype.keyboard_mc = keyboard_mc; Hangman.prototype.num_keyboard_columns = num_keyboard_columns; Hangman.prototype.key_space_x = key_space_x; Hangman.prototype.key_space_y = key_space_y; Hangman.prototype.num_letters_line = num_letters_line; Hangman.prototype.phrase_mc = phrase_mc; Hangman.prototype.phrase_x = phrase_x; Hangman.prototype.phrase_y = phrase_y; Hangman.prototype.phrase_space_x = phrase_space_x; Hangman.prototype.phrase_space_y = phrase_space_y; Hangman.prototype.num_letters_line = num_letters_line; Hangman.prototype.font_name = font_name; Hangman.prototype.font_size = font_size; Hangman.prototype.font_color = font_color; Hangman.prototype.correct_sound = correct_sound; Hangman.prototype.incorrect_sound = incorrect_sound; Hangman.prototype.random_phrase = random_phrase; Hangman.prototype.hint_x = hint_x; Hangman.prototype.hint_y = hint_y; Hangman.prototype.information_x = information_x; Hangman.prototype.information_y = information_y; Hangman.prototype.timeline = this; delete data_file; delete game_lose_scene; delete game_win_scene; delete animation_mc; delete animation_x; delete animation_y; delete keyboard_x; delete keyboard_y; delete keyboard_mc; delete num_keyboard_columns; delete key_space_x; delete key_space_y; delete num_letters_line; delete phrase_mc; delete phrase_x; delete phrase_y; delete phrase_space_x; delete phrase_space_y; delete num_letters_line; delete font_name; delete font_size; delete font_color; delete correct_sound; delete incorrect_sound; delete random_phrase; Hangman.prototype.load_data = function () { data_loader.loadVariables(this.data_file); }; Hangman.prototype.initialize = function (timeline) { this.collect_information(); this.build_keyboard(timeline.keyboard_holder); this.build_animation(timeline); this.build_prompt(timeline); this.build_word_database(); this.build_hidden_phrase(timeline.hidden_phrase_holder); this.between_phrases = false; timeline.hangman_prompt._visible = false; this.num_wrong_guesses = 0; }; Hangman.prototype.collect_information = function () { attachMovie(this.keyboard_mc, "__temp__", Number.MAX_VALUE); this.key_height = __temp__._height; this.key_width = __temp__._width; __temp__.removeMovieClip(); }; Hangman.prototype.build_keyboard = function (timeline) { var num_letters = this.alphabet.length; var num_keys_end = (num_letters % this.num_keyboard_columns); var num_keyboard_rows = (Math.floor(num_letters / this.num_keyboard_columns) + (num_keys_end != 0)); var num_columns = 0; var depth = 0; timeline._x = this.keyboard_x; timeline._y = this.keyboard_y; var j = 0; while (j < num_keyboard_rows) { if ((j == (num_keyboard_rows - 1)) && (num_keys_end != 0)) { num_columns = num_keys_end; } else { num_columns = this.num_keyboard_columns; } var k = 0; while (k < num_columns) { timeline.attachMovie(this.keyboard_mc, "key" + depth, depth); timeline["key" + depth]._x = ((k + 0.5) - (num_columns / 2)) * (this.key_width + this.key_space_x); timeline["key" + depth]._y = ((j + 0.5) - (num_keyboard_rows / 2)) * (this.key_height + this.key_space_y); timeline["key" + depth].id = depth; timeline["key" + depth].character = this.alphabet.charAt(depth); timeline.attachMovie("hangman_textfield", "letter" + depth, depth + num_letters); timeline["letter" + depth]._x = timeline["key" + depth]._x; timeline["letter" + depth]._y = timeline["key" + depth]._y - (timeline["key" + depth]._height / 2); var letter_color = new Color(timeline["letter" + depth]); letter_color.setRGB(parseInt(this.font_color)); timeline["letter" + depth].field = ((((("<P ALIGN = \"CENTER\"><FONT FACE = \"" + this.font_name) + "\"><FONT SIZE = \"") + this.font_size) + "\">") + this.alphabet.charAt(depth)) + "</FONT SIZE></FONT FACE></P>"; depth++; k++; } j++; } }; Hangman.prototype.build_animation = function (timeline) { timeline.attachMovie(this.animation_mc, "hangman_animation", 1); timeline.hangman_animation.stop(); timeline.hangman_animation._x = this.animation_x; timeline.hangman_animation._y = this.animation_y; this.num_turns = timeline.hangman_animation._totalframes; }; Hangman.prototype.build_prompt = function (timeline) { timeline.attachMovie(this.prompt_mc, "hangman_prompt", 1000); timeline.hangman_prompt._visible = false; timeline.hangman_prompt._x = this.prompt_x; timeline.hangman_prompt._y = this.prompt_y; }; Hangman.prototype.build_word_database = function () { this.word_database = new Array(); this.hints = new Array(); this.informations = new Array(); this.indexes = new Array(); var i = 0; while (i < this.num_phrases) { this.indexes[i] = i; i++; } if (this.random_phrase == "true") { this.indexes.randomize(); } var j = 0; while (j < this.num_phrases) { this.word_database[j] = this["phrase" + this.indexes[j]].split(" "); trace(this.word_database[j]); var k = 0; while (k < this.word_database[j].length) { this.word_database[j].num_phrase_letters = this.word_database[j].num_phrase_letters + this.word_database[j][k].length; k++; } this.hints[j] = this["hint" + this.indexes[j]]; this.informations[j] = this["information" + this.indexes[j]]; j++; } }; Hangman.prototype.build_hidden_phrase = function (timeline) { var num_unused_letters = this.num_letters_line; var num_used_letters = 0; var num_phrase_words = this.word_database[this.current_phrase].length; var render_line = 0; var depth = 0; timeline._x = this.phrase_x; timeline._y = this.phrase_y; var j = 0; while (j < num_phrase_words) { if (this.word_database[this.current_phrase][j].length < num_unused_letters) { num_unused_letters = num_unused_letters - this.word_database[this.current_phrase][j].length; var k = 0; while (k < this.word_database[this.current_phrase][j].length) { timeline.attachMovie(this.phrase_mc, "key" + depth, depth); timeline["key" + depth]._x = ((num_used_letters + 0.5) - (this.num_letters_line / 2)) * (this.key_width + this.phrase_space_x); timeline["key" + depth]._y = render_line * (this.key_height + this.phrase_space_y); timeline["key" + depth].id = depth; timeline["key" + depth].character = this.word_database[this.current_phrase][j].charAt(k); timeline.attachMovie("hangman_textfield", "letter" + depth, depth + this.word_database[this.current_phrase].num_phrase_letters); timeline["letter" + depth]._x = timeline["key" + depth]._x; timeline["letter" + depth]._y = timeline["key" + depth]._y - (timeline["key" + depth]._height / 2); var letter_color = new Color(timeline["letter" + depth]); letter_color.setRGB(parseInt(this.font_color)); timeline["letter" + depth]._visible = false; timeline["letter" + depth].field = ((((("<P ALIGN = \"CENTER\"><FONT FACE = \"" + this.font_name) + "\"><FONT SIZE = \"") + this.font_size) + "\">") + this.word_database[this.current_phrase][j].charAt(k)) + "</FONT SIZE></FONT FACE></P>"; num_used_letters++; depth++; k++; } num_unused_letters--; num_used_letters++; } else { render_line++; num_unused_letters = this.num_letters_line; num_used_letters = 0; j--; } j++; } this.timeline.phrase_hint.removeMovieClip(); this.timeline.attachMovie("hangman_textfield", "phrase_hint", 34543); this.timeline.phrase_hint._x = this.hint_x; this.timeline.phrase_hint._y = this.hint_y; this.timeline.phrase_hint.field = (((("<P ALIGN=\"CENTER\"><FONT FACE=\"" + this.font_name) + "\"><FONT SIZE=\"") + this.font_size) + "\">") + this.hints[this.current_phrase]; this.timeline._parent.information = this.informations[this.current_phrase]; }; Hangman.prototype.validate_keyboard_click = function (timeline) { if (!this.between_phrases) { var num_letters = this.alphabet.length; var j = 0; while (j < num_letters) { if (timeline["key" + j].hitTest(_root._xmouse, _root._ymouse, true)) { this.evaluate_guess(timeline["key" + j].character, timeline._parent.hidden_phrase_holder); timeline["key" + j].removeMovieClip(); } j++; } } else if (timeline._parent.hangman_prompt.hitTest(_root._xmouse, _root._ymouse, true)) { this.next_phrase(timeline._parent); } }; Hangman.prototype.validate_keyboard_type = function (timeline) { if (!this.between_phrases) { var character = Key.getCode(); if ((character >= 65) && (90 >= character)) { this.evaluate_guess(String.fromCharCode(character), timeline._parent.hidden_phrase_holder); for (var j in timeline) { if (typeof(timeline[j]) == "movieclip") { if (String.fromCharCode(character) == timeline[j].character) { timeline[j].removeMovieClip(); } } } } } else if (Key.getCode() == 13) { this.next_phrase(timeline._parent); } }; Hangman.prototype.evaluate_guess = function (character, timeline) { var index = 0; var guess = false; if (this.guess_list.find_element(character)) { return(undefined); } var j = 0; while (j < this.word_database[this.current_phrase].length) { var k = 0; while (k < this.word_database[this.current_phrase][j].length) { if (this.word_database[this.current_phrase][j].charAt(k) == character) { timeline["letter" + index]._visible = true; guess = true; } index++; k++; } j++; } this.guess_list.push(character); this.guess_action(guess, timeline._parent); }; Hangman.prototype.guess_action = function (guess, timeline) { if (!guess) { this.incorrect_guess_sound.start(0, 0); this.num_wrong_guesses++; if (this.num_wrong_guesses == (this.num_turns - 1)) { this.player_lost(); } timeline.hangman_animation.nextFrame(); for (var j in timeline:hangman_animation) { if (typeof(timeline.hangman_animation[j]) == "movieclip") { timeline.hangman_animation[j].play(); } } } else { this.correct_guess_sound.start(0, 0); if (this.check_phrase_completion(timeline)) { if ((this.word_database.length - 2) < this.current_phrase) { this.player_won(); } else { this.player_won(); } } } }; Hangman.prototype.check_phrase_completion = function (timeline) { var index = 0; var j = 0; while (j < this.word_database[this.current_phrase].length) { var k = 0; while (k < this.word_database[this.current_phrase][j].length) { if (!timeline.hidden_phrase_holder["letter" + index]._visible) { return(false); } index++; k++; } j++; } return(true); }; Hangman.prototype.clear_phrase = function (timeline) { for (var j in timeline:hidden_phrase_holder) { if (typeof(timeline.hidden_phrase_holder[j]) == "movieclip") { timeline.hidden_phrase_holder[j].removeMovieClip(); } } }; Hangman.prototype.next_phrase = function (timeline) { this.current_phrase++; timeline.hangman_prompt._visible = false; this.between_phrases = false; this.num_wrong_guesses = 0; this.guess_list = new Array(); this.clear_phrase(timeline); this.build_hidden_phrase(timeline.hidden_phrase_holder); this.build_animation(timeline); this.build_keyboard(timeline.keyboard_holder); this.player_win(); }; Hangman.prototype.player_lost = function (timeline) { var _str = ""; var j = 0; while (j < this.word_database[this.current_phrase].length) { _str = _str + (this.word_database[this.current_phrase][j] + " "); j++; } _root.phrase = _str; _root.gotoAndStop(_root._totalframes - 1); }; Hangman.prototype.player_won = function (timeline) { var _str = ""; var j = 0; while (j < this.word_database[this.current_phrase].length) { _str = _str + (this.word_database[this.current_phrase][j] + " "); j++; } _root.phrase = _str; _root.gotoAndStop(_root._totalframes); }; game = new Hangman();
Instance of Symbol 4 MovieClip [hangman_keyboard_holder] "keyboard_holder" in Symbol 8 MovieClip [hangman_component] Frame 1
onClipEvent (mouseDown) { _parent.game.validate_keyboard_click(this); } onClipEvent (keyDown) { _parent.game.validate_keyboard_type(this); }
Instance of Symbol 7 MovieClip [hangman_data_loader] "data_loader" in Symbol 8 MovieClip [hangman_component] Frame 1
onClipEvent (data) { _parent.game.alphabet = alphabet; _parent.game.num_phrases = Number(num_phrases); var j = 0; while (j < _parent.game.num_phrases) { _parent.game["phrase" + j] = this["phrase" + j]; _parent.game["hint" + j] = this["hint" + j]; _parent.game["information" + j] = this["information" + j]; j++; } _parent.game.initialize(_parent); this.swapDepths(Number.MAX_VALUE); this.removeMovieClip(); }
Symbol 39 MovieClip Frame 150
stop();
Symbol 59 MovieClip Frame 177
stop();
Symbol 97 MovieClip Frame 140
stop();
Symbol 135 MovieClip Frame 120
stop();
Symbol 154 MovieClip Frame 160
stop();
Symbol 191 MovieClip Frame 147
stop();
Symbol 197 Button
on (press) { gotoAndStop (43); }
Symbol 229 MovieClip Frame 108
stop();
Symbol 230 MovieClip Frame 66
stop();

Library Items

Symbol 1 Sound [correct]Used by:Timeline
Symbol 2 Sound [incorrect]Used by:Timeline
Symbol 3 MovieClip [hangman_hidden_phrase_holder]Used by:8
Symbol 4 MovieClip [hangman_keyboard_holder]Used by:8  Timeline
Symbol 5 FontUsed by:6
Symbol 6 TextUses:5Used by:7
Symbol 7 MovieClip [hangman_data_loader]Uses:6Used by:8  Timeline
Symbol 8 MovieClip [hangman_component]Uses:3 4 7Used by:Timeline
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClip [phrase]Uses:9Used by:Timeline
Symbol 11 FontUsed by:12 198 235
Symbol 12 EditableTextUses:11Used by:13
Symbol 13 MovieClip [hangman_textfield]Uses:12Used by:Timeline
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClip [keyboard]Uses:14Used by:Timeline
Symbol 16 GraphicUsed by:157 191 230
Symbol 17 GraphicUsed by:157 191 230
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:157
Symbol 20 GraphicUsed by:157 191 230
Symbol 21 GraphicUsed by:39
Symbol 22 GraphicUsed by:39
Symbol 23 GraphicUsed by:39
Symbol 24 GraphicUsed by:39
Symbol 25 GraphicUsed by:39
Symbol 26 GraphicUsed by:39
Symbol 27 SoundUsed by:39
Symbol 28 GraphicUsed by:39
Symbol 29 GraphicUsed by:39
Symbol 30 GraphicUsed by:39
Symbol 31 GraphicUsed by:39
Symbol 32 GraphicUsed by:39
Symbol 33 GraphicUsed by:39
Symbol 34 GraphicUsed by:39
Symbol 35 GraphicUsed by:39
Symbol 36 GraphicUsed by:39
Symbol 37 GraphicUsed by:39
Symbol 38 SoundUsed by:39
Symbol 39 MovieClipUses:21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38Used by:157
Symbol 40 GraphicUsed by:59
Symbol 41 GraphicUsed by:59
Symbol 42 GraphicUsed by:59
Symbol 43 GraphicUsed by:59
Symbol 44 GraphicUsed by:59
Symbol 45 GraphicUsed by:59
Symbol 46 SoundUsed by:59
Symbol 47 GraphicUsed by:59
Symbol 48 GraphicUsed by:59
Symbol 49 GraphicUsed by:59
Symbol 50 GraphicUsed by:59
Symbol 51 SoundUsed by:59
Symbol 52 GraphicUsed by:59
Symbol 53 GraphicUsed by:59
Symbol 54 GraphicUsed by:59
Symbol 55 GraphicUsed by:59
Symbol 56 GraphicUsed by:59
Symbol 57 GraphicUsed by:59
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58Used by:157
Symbol 60 GraphicUsed by:97
Symbol 61 GraphicUsed by:97
Symbol 62 GraphicUsed by:97
Symbol 63 GraphicUsed by:97 154 229
Symbol 64 GraphicUsed by:97
Symbol 65 GraphicUsed by:97
Symbol 66 GraphicUsed by:97
Symbol 67 SoundUsed by:97
Symbol 68 GraphicUsed by:97
Symbol 69 GraphicUsed by:97
Symbol 70 GraphicUsed by:97
Symbol 71 GraphicUsed by:97
Symbol 72 GraphicUsed by:97
Symbol 73 GraphicUsed by:97
Symbol 74 GraphicUsed by:97
Symbol 75 GraphicUsed by:97
Symbol 76 GraphicUsed by:97
Symbol 77 GraphicUsed by:97
Symbol 78 GraphicUsed by:97
Symbol 79 GraphicUsed by:97
Symbol 80 GraphicUsed by:97
Symbol 81 GraphicUsed by:97
Symbol 82 GraphicUsed by:97
Symbol 83 GraphicUsed by:97
Symbol 84 GraphicUsed by:97
Symbol 85 GraphicUsed by:97
Symbol 86 GraphicUsed by:97
Symbol 87 GraphicUsed by:97
Symbol 88 GraphicUsed by:97
Symbol 89 GraphicUsed by:97
Symbol 90 GraphicUsed by:97
Symbol 91 GraphicUsed by:97
Symbol 92 GraphicUsed by:97
Symbol 93 GraphicUsed by:97
Symbol 94 SoundUsed by:97
Symbol 95 GraphicUsed by:97
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96Used by:157
Symbol 98 GraphicUsed by:135
Symbol 99 GraphicUsed by:135
Symbol 100 GraphicUsed by:135
Symbol 101 GraphicUsed by:135
Symbol 102 GraphicUsed by:135
Symbol 103 GraphicUsed by:135 154 229
Symbol 104 GraphicUsed by:135 154 229
Symbol 105 GraphicUsed by:135 154 229
Symbol 106 GraphicUsed by:135 154 191 229
Symbol 107 GraphicUsed by:135 154 191 229
Symbol 108 GraphicUsed by:135 154 191 229
Symbol 109 GraphicUsed by:135 154 191 229
Symbol 110 GraphicUsed by:135
Symbol 111 GraphicUsed by:135
Symbol 112 SoundUsed by:135
Symbol 113 GraphicUsed by:135 154 229
Symbol 114 GraphicUsed by:135 154 229
Symbol 115 GraphicUsed by:135
Symbol 116 GraphicUsed by:135 154 229
Symbol 117 GraphicUsed by:135 154 229
Symbol 118 GraphicUsed by:135
Symbol 119 GraphicUsed by:135
Symbol 120 GraphicUsed by:135
Symbol 121 GraphicUsed by:135
Symbol 122 GraphicUsed by:135
Symbol 123 GraphicUsed by:135
Symbol 124 GraphicUsed by:135 154 191 229
Symbol 125 GraphicUsed by:135 154 191 229
Symbol 126 GraphicUsed by:135
Symbol 127 GraphicUsed by:135 154 191 229
Symbol 128 GraphicUsed by:135
Symbol 129 GraphicUsed by:135
Symbol 130 GraphicUsed by:135
Symbol 131 GraphicUsed by:135
Symbol 132 GraphicUsed by:135
Symbol 133 GraphicUsed by:135
Symbol 134 SoundUsed by:135 191  Timeline
Symbol 135 MovieClipUses:98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134Used by:157
Symbol 136 GraphicUsed by:154
Symbol 137 GraphicUsed by:154
Symbol 138 GraphicUsed by:154
Symbol 139 GraphicUsed by:154
Symbol 140 GraphicUsed by:154
Symbol 141 SoundUsed by:154
Symbol 142 GraphicUsed by:154
Symbol 143 GraphicUsed by:154
Symbol 144 GraphicUsed by:154
Symbol 145 GraphicUsed by:154
Symbol 146 GraphicUsed by:154
Symbol 147 GraphicUsed by:154
Symbol 148 GraphicUsed by:154
Symbol 149 SoundUsed by:154
Symbol 150 GraphicUsed by:154 229
Symbol 151 GraphicUsed by:154
Symbol 152 SoundUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:136 137 63 103 104 105 106 107 108 109 113 114 117 116 124 125 127 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153Used by:157
Symbol 155 GraphicUsed by:157 191
Symbol 156 GraphicUsed by:157 191
Symbol 157 MovieClip [animations]Uses:16 17 19 20 39 59 97 135 154 155 156Used by:Timeline
Symbol 158 ShapeTweeningUsed by:161
Symbol 159 GraphicUsed by:161
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:158 159 160Used by:Timeline
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 GraphicUsed by:Timeline
Symbol 167 GraphicUsed by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:Timeline
Symbol 171 GraphicUsed by:191
Symbol 172 GraphicUsed by:191
Symbol 173 GraphicUsed by:191
Symbol 174 GraphicUsed by:191
Symbol 175 GraphicUsed by:191
Symbol 176 GraphicUsed by:191
Symbol 177 GraphicUsed by:191
Symbol 178 SoundUsed by:191
Symbol 179 GraphicUsed by:191
Symbol 180 GraphicUsed by:191
Symbol 181 GraphicUsed by:191
Symbol 182 GraphicUsed by:191
Symbol 183 GraphicUsed by:191
Symbol 184 GraphicUsed by:191
Symbol 185 GraphicUsed by:191
Symbol 186 GraphicUsed by:191
Symbol 187 GraphicUsed by:191
Symbol 188 GraphicUsed by:191
Symbol 189 GraphicUsed by:191
Symbol 190 SoundUsed by:191
Symbol 191 MovieClipUses:16 17 155 156 20 171 172 173 174 175 176 107 109 108 124 125 106 177 178 179 127 180 181 182 183 184 185 186 187 188 189 134 190Used by:Timeline
Symbol 192 FontUsed by:193 194 196 231 232
Symbol 193 TextUses:192Used by:Timeline
Symbol 194 TextUses:192Used by:Timeline
Symbol 195 GraphicUsed by:197
Symbol 196 TextUses:192Used by:197
Symbol 197 ButtonUses:195 196Used by:Timeline
Symbol 198 EditableTextUses:11Used by:Timeline
Symbol 199 GraphicUsed by:229
Symbol 200 GraphicUsed by:229
Symbol 201 GraphicUsed by:229
Symbol 202 GraphicUsed by:229
Symbol 203 GraphicUsed by:229
Symbol 204 GraphicUsed by:229
Symbol 205 GraphicUsed by:229
Symbol 206 GraphicUsed by:229
Symbol 207 SoundUsed by:229
Symbol 208 GraphicUsed by:229
Symbol 209 GraphicUsed by:229
Symbol 210 GraphicUsed by:229
Symbol 211 SoundUsed by:229
Symbol 212 GraphicUsed by:229
Symbol 213 GraphicUsed by:229
Symbol 214 GraphicUsed by:229
Symbol 215 GraphicUsed by:229
Symbol 216 GraphicUsed by:229
Symbol 217 GraphicUsed by:229
Symbol 218 GraphicUsed by:229
Symbol 219 GraphicUsed by:229
Symbol 220 GraphicUsed by:229
Symbol 221 SoundUsed by:229
Symbol 222 GraphicUsed by:229
Symbol 223 GraphicUsed by:229
Symbol 224 GraphicUsed by:229
Symbol 225 GraphicUsed by:229
Symbol 226 GraphicUsed by:229
Symbol 227 SoundUsed by:229
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:199 200 201 63 103 104 105 106 107 108 109 113 114 117 116 124 125 202 150 127 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228Used by:230
Symbol 230 MovieClipUses:16 17 229 20Used by:Timeline
Symbol 231 TextUses:192Used by:Timeline
Symbol 232 TextUses:192Used by:Timeline
Symbol 233 FontUsed by:234
Symbol 234 EditableTextUses:233Used by:Timeline
Symbol 235 EditableTextUses:11Used by:Timeline

Instance Names

"hidden_phrase_holder"Symbol 8 MovieClip [hangman_component] Frame 1Symbol 3 MovieClip [hangman_hidden_phrase_holder]
"keyboard_holder"Symbol 8 MovieClip [hangman_component] Frame 1Symbol 4 MovieClip [hangman_keyboard_holder]
"data_loader"Symbol 8 MovieClip [hangman_component] Frame 1Symbol 7 MovieClip [hangman_data_loader]

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "correct"
ExportAssets (56)Timeline Frame 1Symbol 2 as "incorrect"
ExportAssets (56)Timeline Frame 1Symbol 3 as "hangman_hidden_phrase_holder"
ExportAssets (56)Timeline Frame 1Symbol 3 as "hangman_hidden_phrase_holder"
ExportAssets (56)Timeline Frame 1Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 1Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 1Symbol 8 as "hangman_component"
ExportAssets (56)Timeline Frame 1Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 1Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 1Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 1Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 1Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 1Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 3Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 3Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 3Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 3Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 3Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 3Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 3Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 4Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 4Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 4Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 4Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 4Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 4Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 4Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 5Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 5Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 5Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 5Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 5Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 5Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 5Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 5Symbol 2 as "incorrect"
ExportAssets (56)Timeline Frame 6Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 6Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 6Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 6Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 6Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 6Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 6Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 7Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 7Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 7Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 7Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 7Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 7Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 7Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 7Symbol 1 as "correct"
ExportAssets (56)Timeline Frame 8Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 8Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 8Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 8Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 8Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 8Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 8Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 9Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 9Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 9Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 9Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 9Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 9Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 9Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 10Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 10Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 10Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 10Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 10Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 10Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 10Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 11Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 11Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 11Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 11Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 11Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 11Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 11Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 12Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 12Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 12Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 12Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 12Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 12Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 12Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 13Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 13Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 13Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 13Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 13Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 13Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 13Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 14Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 14Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 14Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 14Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 14Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 14Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 14Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 15Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 15Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 15Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 15Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 15Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 15Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 15Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 16Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 16Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 16Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 16Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 16Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 16Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 16Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 17Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 17Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 17Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 17Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 17Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 17Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 17Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 18Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 18Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 18Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 18Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 18Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 18Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 18Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 19Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 19Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 19Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 19Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 19Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 19Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 19Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 20Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 20Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 20Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 20Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 20Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 20Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 20Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 21Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 21Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 21Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 21Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 21Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 21Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 21Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 22Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 22Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 22Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 22Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 22Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 22Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 22Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 23Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 23Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 23Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 23Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 23Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 23Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 23Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 24Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 24Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 24Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 24Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 24Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 24Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 24Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 25Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 25Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 25Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 25Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 25Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 25Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 25Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 26Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 26Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 26Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 26Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 26Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 26Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 26Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 27Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 27Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 27Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 27Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 27Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 27Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 27Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 28Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 28Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 28Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 28Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 28Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 28Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 28Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 29Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 29Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 29Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 29Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 29Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 29Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 29Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 30Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 30Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 30Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 30Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 30Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 30Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 30Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 31Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 31Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 31Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 31Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 31Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 31Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 31Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 32Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 32Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 32Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 32Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 32Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 32Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 32Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 33Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 33Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 33Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 33Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 33Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 33Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 33Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 34Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 34Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 34Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 34Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 34Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 34Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 34Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 35Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 35Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 35Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 35Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 35Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 35Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 35Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 36Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 36Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 36Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 36Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 36Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 36Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 36Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 37Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 37Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 37Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 37Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 37Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 37Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 37Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 38Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 38Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 38Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 38Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 38Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 38Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 38Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 39Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 39Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 39Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 39Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 39Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 39Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 39Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 40Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 40Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 40Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 40Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 40Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 40Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 40Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 41Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 41Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 41Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 41Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 41Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 41Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 41Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 42Symbol 157 as "animations"
ExportAssets (56)Timeline Frame 42Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 42Symbol 13 as "hangman_textfield"
ExportAssets (56)Timeline Frame 42Symbol 4 as "hangman_keyboard_holder"
ExportAssets (56)Timeline Frame 42Symbol 7 as "hangman_data_loader"
ExportAssets (56)Timeline Frame 42Symbol 10 as "phrase"
ExportAssets (56)Timeline Frame 42Symbol 15 as "keyboard"
ExportAssets (56)Timeline Frame 43Symbol 8 as "hangman_component"

Dynamic Text Variables

fieldSymbol 12 EditableText"<P ALIGN="LEFT"></P>"
phraseSymbol 198 EditableText" "
informationSymbol 234 EditableText""
phraseSymbol 235 EditableText" "




http://swfchan.com/6/29347/info.shtml
Created: 19/5 -2019 23:41:54 Last modified: 19/5 -2019 23:41:54 Server time: 02/05 -2024 06:32:37