STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #16692 |
0 mi |
1000 mi |
500 mi |
Place the state by dragging and dropping. 1) Place the cursor over the state. 2) While pressing the left mouse button, drag the state to its correct location. 3) Release the left mouse button. |
GAME OVER |
OK |
Play Again |
Exit |
Avg Error |
Time |
Score |
Place the state by dragging and dropping. 1) Place the cursor over the state. 2) While pressing the left mouse button, drag the state to its correct location. 3) Release the left mouse button. |
GAME OVER |
ActionScript [AS1/AS2]
Frame 1Stage.scaleMode = "showAll"; this.createEmptyMovieClip("preload_mc", 1); var preloader = new Object(); preloader.width = 149.3; preloader.height = 37.9; preload_mc._x = (Stage.width - preloader.width) / 2; preload_mc._y = (Stage.height - preloader.height) / 2; preload_mc.loadMovie("preloader.swf"); this.onEnterFrame = function () { var _local1 = this; if (_local1._framesloaded == _local1._totalframes) { preload_mc.removeMovieClip(); _local1.gotoAndPlay("frmGame"); delete _local1.onEnterFrame; } }; stop();Frame 2function randomizeChoices() { count = 0; while (count < gChoices.length) { gRandomOrder[count] = count; count++; } count = 0; while (count < gChoices.length) { var _local1 = parseInt(Math.random() * gChoices.length, 10); var _local2 = gChoices[_local1]; gChoices[_local1] = gChoices[count]; gChoices[count] = _local2; _local2 = gRandomOrder[_local1]; gRandomOrder[_local1] = gRandomOrder[count]; gRandomOrder[count] = _local2; count++; } getChoice(); } function getChoice() { gFirstTry_tf = true; this.attachMovie(("states_" + (gRandomOrder[gChoiceCount] + 1)) + "_graphic", gChoices[gChoiceCount], gChoiceCount); if (gChoices[gChoiceCount] == "Delaware") { ins_states_36_bogus_target._visible = true; } eval (gChoices[gChoiceCount]).onPress = function () { songKS.start(); this.startDrag(); }; eval (gChoices[gChoiceCount]).onRelease = function () { evaluateDrop(this); }; eval (gChoices[gChoiceCount]).onReleaseOutside = function () { evaluateDrop(this); }; ins_state_to_pick.text = ("Place " + gChoices[gChoiceCount]) + " on the map:"; if (gChoiceCount > 0) { eval (gChoices[gChoiceCount])._x = ((ins_state_to_pick._x + ins_state_to_pick._width) + (eval (gChoices[gChoiceCount])._width / 2)) + 20; } else { eval (gChoices[gChoiceCount])._x = ((ins_instructions._x + ins_instructions._width) + (eval (gChoices[gChoiceCount])._width / 2)) + 20; } eval ("_root." + gChoices[gChoiceCount])._y = eval ("_root." + gChoices[gChoiceCount])._height / 2; } function evaluateDrop(dragMovie) { dragMovie.stopDrag(); Incorrect_Text = ""; if (dragMovie._y < 180) { ins_instructions._visible = false; Incorrect_Text = "Oops! You must place the state on the map."; if (ins_Incorrect_Text.getDepth() < this[gChoices[gChoiceCount]].getDepth()) { this[gChoices[gChoiceCount]].swapDepths(ins_Incorrect_Text); } incorrect_sound.start(); } else { previous_dragMovie = dragMovie; x_target = eval (("ins_states_" + (gRandomOrder[gChoiceCount] + 1)) + "_button")._x; y_target = eval (("ins_states_" + (gRandomOrder[gChoiceCount] + 1)) + "_button")._y; distance_xy = ((dragMovie._x - x_target) * (dragMovie._x - x_target)) + ((dragMovie._y - y_target) * (dragMovie._y - y_target)); distance_xy = Math.sqrt(distance_xy); distance_xy = Math.round(distance_xy); placeChoice(dragMovie); } } function placeChoice(dragMovie) { var clipname = (("ins_states_" + (gRandomOrder[gChoiceCount] + 1)) + "_button"); x_target = eval (clipname)._x; y_target = eval (clipname)._y; var correctDrop_tf = true; if (incorrect_txt) { incorrect_txt.removeTextField(); } distance_xy = ((dragMovie._x - x_target) * (dragMovie._x - x_target)) + ((dragMovie._y - y_target) * (dragMovie._y - y_target)); distance_xy = Math.sqrt(distance_xy); distance_xy = Math.round(distance_xy * 6.6); if (distance_xy <= 50) { distance_xy = 0; SongNumber = 1 + parseInt(Math.random() * 5, 10); if (SongNumber == PastSongNumber) { SongNumber = 1 + parseInt(Math.random() * 5, 10); } PastSongNumber = SongNumber; eval ("song" + SongNumber).start(); if (gFirstTry_tf) { gTotalCorrect++; } } else { correctDrop_tf = false; incorrect_sound.start(); } if (gFirstTry_tf) { Total_Distance_Error = Total_Distance_Error + distance_xy; Average_Distance_Error = Math.round(Total_Distance_Error / (gChoiceCount + 1)); } if (gChoiceCount == 0) { gScoreText = ((((((((gTotalCorrect + " perfect out of ") + (gChoiceCount + 1)) + " turn, ") + ((gChoices.length - gChoiceCount) - 1)) + " turns to go | Error ") + distance_xy) + " Miles | Avg Error ") + Average_Distance_Error) + " Miles"; } else if (gChoiceCount < (gChoices.length - 2)) { gScoreText = ((((((((gTotalCorrect + " perfect out of ") + (gChoiceCount + 1)) + " turns, ") + ((gChoices.length - gChoiceCount) - 1)) + " turns to go | Error ") + distance_xy) + " Miles | Avg Error ") + Average_Distance_Error) + " Miles"; } else if (gChoiceCount == (gChoices.length - 2)) { gScoreText = ((((((((gTotalCorrect + " perfect out of ") + (gChoiceCount + 1)) + " turns, ") + ((gChoices.length - gChoiceCount) - 1)) + " turn to go | Error ") + distance_xy) + " Miles | Avg Error ") + Average_Distance_Error) + " Miles"; } else { gScoreText = ((((((gTotalCorrect + " perfect out of ") + (gChoiceCount + 1)) + " turns | Error ") + distance_xy) + " Miles | Avg Error ") + Average_Distance_Error) + " Miles"; } if (correctDrop_tf) { eval (gChoices[gChoiceCount]).onPress = function () { }; eval (gChoices[gChoiceCount]).onRelease = function () { }; eval (gChoices[gChoiceCount]).onReleaseOutside = function () { }; dragMovie._x = eval (clipname)._x; dragMovie._y = eval (clipname)._y; dragMovie.useHandCursor = false; } else { var dropClip_color = new Color(this[clipname]); dropClip_color.setRGB(16711680); this[clipname]._alpha = 100; } song.start(); if ((gChoiceCount < (gChoices.length - 1)) || (!correctDrop_tf)) { ins_instructions._visible = false; if (correctDrop_tf) { gChoiceCount++; getChoice(); } else { var x_int = (dragMovie._x - (dragMovie._width / 2)); var y_int = (dragMovie._y + (dragMovie._height / 2)); this.createTextField("incorrect_txt", 1000, x_int, y_int, 250, 100); incorrect_txt._visible = false; incorrect_txt.autoSize = true; incorrect_txt.selectable = false; incorrect_txt.multiline = true; incorrect_txt.wordWrap = true; incorrect_txt.html = true; incorrect_txt.htmlText = ("<font face=\"_sans\" size=\"12\"><b><i>The correct location of " + gChoices[gChoiceCount]) + " is shown in red. Please drop it there.</i></b></font>"; var stageBuffer_int = 5; if ((incorrect_txt._x + incorrect_txt._width) > Stage.width) { incorrect_txt._x = Stage.width - incorrect_txt._width; } else if (incorrect_txt._x < 0) { incorrect_txt._x = stageBuffer_int; } if ((incorrect_txt._y + incorrect_txt._height) > Stage.height) { incorrect_txt._y = (Stage.height - incorrect_txt._height) - stageBuffer_int; } incorrect_txt._visible = true; gFirstTry_tf = false; } } else { gotoAndStop (4); } } function playAgain() { gotoAndStop (2); } var gChoices = ["California", "New York", "Ohio", "Virginia", "Texas", "Pennsylvania", "Massachusetts", "Alaska", "Florida", "Mississippi", "Kansas", "Colorado", "Missouri", "Georgia", "Michigan", "Illinois", "Tennessee", "Hawaii", "Arizona", "Maine", "Connecticut", "Louisiana", "Iowa", "Kentucky", "Oklahoma", "New Jersey", "Oregon", "New Mexico", "Arkansas", "Utah", "Minnesota", "Wisconsin", "Washington", "Alabama", "Indiana", "Delaware", "North Carolina", "Nevada", "Maryland", "South Carolina", "Montana", "Nebraska", "Idaho", "Vermont", "Wyoming", "New Hampshire", "Rhode Island", "North Dakota", "West Virginia", "South Dakota"]; var gIncorrect = new Array(); var gRandomOrder = new Array(); var gChoiceCount = 0; var gTotalCorrect = 0; var gStartTime = getTimer(); var gScoreText = ""; ins_state_to_pick.autoSize = "left"; insGameOver._visible = false; Incorrect_Text = ""; ins_ok_button._visible = false; songKS = new Sound(); songKS.attachSound("keypress_sound"); PastSongNumber = 0; song = new Sound(); song.attachSound("Latch_Slide"); song1 = new Sound(); song1.attachSound("good1_sound"); song2 = new Sound(); song2.attachSound("great2_sound"); song3 = new Sound(); song3.attachSound("right1_sound"); song4 = new Sound(); song4.attachSound("right5_sound"); song5 = new Sound(); song5.attachSound("yes2_sound"); incorrect_sound = new Sound(); incorrect_sound.attachSound("M_error"); var count = 0; while (count < gChoices.length) { gIncorrect[count] = 0; count++; } var Total_Distance_Error = 0; ins_states_36_bogus_target._visible = false; randomizeChoices(); stop();Symbol 135 Buttonon (release) { _parent.playAgain(); }Symbol 140 Buttonon (release) { getURL ("javascript:window.close();"); }
Library Items
Symbol 1 Sound [good1_sound] | ||
Symbol 2 Sound [great2_sound] | ||
Symbol 3 Sound [keypress_sound] | ||
Symbol 4 Sound [Latch_Slide] | ||
Symbol 5 Sound [M_Error] | ||
Symbol 6 Sound [right1_sound] | ||
Symbol 7 Sound [right5_sound] | ||
Symbol 8 Sound [yes2_sound] | ||
Symbol 9 Graphic | Used by:Timeline | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip [states_8_graphic] | Uses:10 | Used by:Timeline |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip [states_18_graphic] | Uses:12 | Used by:Timeline |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip [states_2_graphic] | Uses:14 | Used by:Timeline |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip [states_1_graphic] | Uses:16 | Used by:Timeline |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip [states_3_graphic] | Uses:18 | Used by:Timeline |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip [states_4_graphic] | Uses:20 | Used by:Timeline |
Symbol 22 Graphic | Used by:23 | |
Symbol 23 MovieClip [states_5_graphic] | Uses:22 | Used by:Timeline |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 MovieClip [states_6_graphic] | Uses:24 | Used by:Timeline |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 MovieClip [states_7_graphic] | Uses:26 | Used by:Timeline |
Symbol 28 Graphic | Used by:29 | |
Symbol 29 MovieClip [states_9_graphic] | Uses:28 | Used by:Timeline |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip [states_10_graphic] | Uses:30 | Used by:Timeline |
Symbol 32 Graphic | Used by:33 | |
Symbol 33 MovieClip [states_11_graphic] | Uses:32 | Used by:Timeline |
Symbol 34 Graphic | Used by:35 | |
Symbol 35 MovieClip [states_12_graphic] | Uses:34 | Used by:Timeline |
Symbol 36 Graphic | Used by:37 | |
Symbol 37 MovieClip [states_13_graphic] | Uses:36 | Used by:Timeline |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip [states_14_graphic] | Uses:38 | Used by:Timeline |
Symbol 40 Graphic | Used by:41 | |
Symbol 41 MovieClip [states_15_graphic] | Uses:40 | Used by:Timeline |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip [states_16_graphic] | Uses:42 | Used by:Timeline |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 MovieClip [states_17_graphic] | Uses:44 | Used by:Timeline |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip [states_19_graphic] | Uses:46 | Used by:Timeline |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip [states_20_graphic] | Uses:48 | Used by:Timeline |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 MovieClip [states_21_graphic] | Uses:50 | Used by:Timeline |
Symbol 52 Graphic | Used by:53 | |
Symbol 53 MovieClip [states_22_graphic] | Uses:52 | Used by:Timeline |
Symbol 54 Graphic | Used by:55 | |
Symbol 55 MovieClip [states_23_graphic] | Uses:54 | Used by:Timeline |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip [states_24_graphic] | Uses:56 | Used by:Timeline |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip [states_25_graphic] | Uses:58 | Used by:Timeline |
Symbol 60 Graphic | Used by:61 | |
Symbol 61 MovieClip [states_26_graphic] | Uses:60 | Used by:Timeline |
Symbol 62 Graphic | Used by:63 | |
Symbol 63 MovieClip [states_27_graphic] | Uses:62 | Used by:Timeline |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip [states_28_graphic] | Uses:64 | Used by:Timeline |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip [states_29_graphic] | Uses:66 | Used by:Timeline |
Symbol 68 Graphic | Used by:69 | |
Symbol 69 MovieClip [states_30_graphic] | Uses:68 | Used by:Timeline |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip [states_31_graphic] | Uses:70 | Used by:Timeline |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 MovieClip [states_32_graphic] | Uses:72 | Used by:Timeline |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 MovieClip [states_33_graphic] | Uses:74 | Used by:Timeline |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip [states_34_graphic] | Uses:76 | Used by:Timeline |
Symbol 78 Graphic | Used by:79 | |
Symbol 79 MovieClip [states_35_graphic] | Uses:78 | Used by:Timeline |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip [states_37_graphic] | Uses:80 | Used by:Timeline |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip [states_38_graphic] | Uses:82 | Used by:Timeline |
Symbol 84 Graphic | Used by:85 | |
Symbol 85 MovieClip [states_39_graphic] | Uses:84 | Used by:Timeline |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip [states_40_graphic] | Uses:86 | Used by:Timeline |
Symbol 88 Graphic | Used by:89 | |
Symbol 89 MovieClip [states_41_graphic] | Uses:88 | Used by:Timeline |
Symbol 90 Graphic | Used by:91 | |
Symbol 91 MovieClip [states_42_graphic] | Uses:90 | Used by:Timeline |
Symbol 92 Graphic | Used by:93 | |
Symbol 93 MovieClip [states_43_graphic] | Uses:92 | Used by:Timeline |
Symbol 94 Graphic | Used by:95 | |
Symbol 95 MovieClip [states_44_graphic] | Uses:94 | Used by:Timeline |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 MovieClip [states_45_graphic] | Uses:96 | Used by:Timeline |
Symbol 98 Graphic | Used by:99 | |
Symbol 99 MovieClip [states_46_graphic] | Uses:98 | Used by:Timeline |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 MovieClip [states_47_graphic] | Uses:100 | Used by:Timeline |
Symbol 102 Graphic | Used by:103 | |
Symbol 103 MovieClip [states_48_graphic] | Uses:102 | Used by:Timeline |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip [states_49_graphic] | Uses:104 | Used by:Timeline |
Symbol 106 Graphic | Used by:107 | |
Symbol 107 MovieClip [states_50_graphic] | Uses:106 | Used by:Timeline |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip [states_36_graphic] | Uses:108 | Used by:Timeline |
Symbol 110 Graphic | Used by:115 | |
Symbol 111 Font | Used by:112 113 114 | |
Symbol 112 Text | Uses:111 | Used by:115 |
Symbol 113 Text | Uses:111 | Used by:115 |
Symbol 114 Text | Uses:111 | Used by:115 |
Symbol 115 MovieClip | Uses:110 112 113 114 | Used by:Timeline |
Symbol 116 Font | Used by:117 118 121 141 142 143 144 145 146 148 149 151 | |
Symbol 117 EditableText | Uses:116 | Used by:Timeline |
Symbol 118 EditableText | Uses:116 | Used by:Timeline |
Symbol 119 Font | Used by:120 122 150 152 | |
Symbol 120 EditableText | Uses:119 | Used by:Timeline |
Symbol 121 EditableText | Uses:116 | Used by:Timeline |
Symbol 122 EditableText | Uses:119 | Used by:Timeline |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:129 |
Symbol 125 Font | Used by:126 133 138 | |
Symbol 126 Text | Uses:125 | Used by:129 |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:129 |
Symbol 129 Button | Uses:124 126 128 | Used by:Timeline |
Symbol 130 Graphic | Used by:147 | |
Symbol 131 Bitmap | Used by:132 134 | |
Symbol 132 Graphic | Uses:131 | Used by:135 |
Symbol 133 Text | Uses:125 | Used by:135 |
Symbol 134 Graphic | Uses:131 | Used by:135 |
Symbol 135 Button | Uses:132 133 134 | Used by:147 |
Symbol 136 Bitmap | Used by:137 139 | |
Symbol 137 Graphic | Uses:136 | Used by:140 |
Symbol 138 Text | Uses:125 | Used by:140 |
Symbol 139 Graphic | Uses:136 | Used by:140 |
Symbol 140 Button | Uses:137 138 139 | Used by:147 |
Symbol 141 Text | Uses:116 | Used by:147 |
Symbol 142 EditableText | Uses:116 | Used by:147 |
Symbol 143 EditableText | Uses:116 | Used by:147 |
Symbol 144 Text | Uses:116 | Used by:147 |
Symbol 145 Text | Uses:116 | Used by:147 |
Symbol 146 EditableText | Uses:116 | Used by:147 |
Symbol 147 MovieClip | Uses:130 135 140 141 142 143 144 145 146 | Used by:Timeline |
Symbol 148 EditableText | Uses:116 | Used by:Timeline |
Symbol 149 EditableText | Uses:116 | Used by:Timeline |
Symbol 150 EditableText | Uses:119 | Used by:Timeline |
Symbol 151 EditableText | Uses:116 | Used by:Timeline |
Symbol 152 EditableText | Uses:119 | Used by:Timeline |
Symbol 153 Graphic | Used by:155 | |
Symbol 154 Sound | Used by:155 | |
Symbol 155 MovieClip | Uses:153 154 | Used by:Timeline |
Instance Names
"ins_states8_graphic" | Frame 2 | Symbol 11 MovieClip [states_8_graphic] |
"ins_states_18_graphic" | Frame 2 | Symbol 13 MovieClip [states_18_graphic] |
"ins_states_2_button" | Frame 2 | Symbol 15 MovieClip [states_2_graphic] |
"ins_states_1_button" | Frame 2 | Symbol 17 MovieClip [states_1_graphic] |
"ins_states_3_button" | Frame 2 | Symbol 19 MovieClip [states_3_graphic] |
"ins_states_4_button" | Frame 2 | Symbol 21 MovieClip [states_4_graphic] |
"ins_states_5_button" | Frame 2 | Symbol 23 MovieClip [states_5_graphic] |
"ins_states_6_button" | Frame 2 | Symbol 25 MovieClip [states_6_graphic] |
"ins_states_7_button" | Frame 2 | Symbol 27 MovieClip [states_7_graphic] |
"ins_states_9_button" | Frame 2 | Symbol 29 MovieClip [states_9_graphic] |
"ins_states_10_button" | Frame 2 | Symbol 31 MovieClip [states_10_graphic] |
"ins_states_11_button" | Frame 2 | Symbol 33 MovieClip [states_11_graphic] |
"ins_states_12_button" | Frame 2 | Symbol 35 MovieClip [states_12_graphic] |
"ins_states_13_button" | Frame 2 | Symbol 37 MovieClip [states_13_graphic] |
"ins_states_14_button" | Frame 2 | Symbol 39 MovieClip [states_14_graphic] |
"ins_states_15_button" | Frame 2 | Symbol 41 MovieClip [states_15_graphic] |
"ins_states_16_button" | Frame 2 | Symbol 43 MovieClip [states_16_graphic] |
"ins_states_17_button" | Frame 2 | Symbol 45 MovieClip [states_17_graphic] |
"ins_states_19_button" | Frame 2 | Symbol 47 MovieClip [states_19_graphic] |
"ins_states_20_button" | Frame 2 | Symbol 49 MovieClip [states_20_graphic] |
"ins_states_21_button" | Frame 2 | Symbol 51 MovieClip [states_21_graphic] |
"ins_states_22_button" | Frame 2 | Symbol 53 MovieClip [states_22_graphic] |
"ins_states_23_button" | Frame 2 | Symbol 55 MovieClip [states_23_graphic] |
"ins_states_24_button" | Frame 2 | Symbol 57 MovieClip [states_24_graphic] |
"ins_states_25_button" | Frame 2 | Symbol 59 MovieClip [states_25_graphic] |
"ins_states_26_button" | Frame 2 | Symbol 61 MovieClip [states_26_graphic] |
"ins_states_27_button" | Frame 2 | Symbol 63 MovieClip [states_27_graphic] |
"ins_states_28_button" | Frame 2 | Symbol 65 MovieClip [states_28_graphic] |
"ins_states_29_button" | Frame 2 | Symbol 67 MovieClip [states_29_graphic] |
"ins_states_30_button" | Frame 2 | Symbol 69 MovieClip [states_30_graphic] |
"ins_states_31_button" | Frame 2 | Symbol 71 MovieClip [states_31_graphic] |
"ins_states_32_button" | Frame 2 | Symbol 73 MovieClip [states_32_graphic] |
"ins_states_33_button" | Frame 2 | Symbol 75 MovieClip [states_33_graphic] |
"ins_states_34_button" | Frame 2 | Symbol 77 MovieClip [states_34_graphic] |
"ins_states_35_button" | Frame 2 | Symbol 79 MovieClip [states_35_graphic] |
"ins_states_37_button" | Frame 2 | Symbol 81 MovieClip [states_37_graphic] |
"ins_states_38_button" | Frame 2 | Symbol 83 MovieClip [states_38_graphic] |
"ins_states_39_button" | Frame 2 | Symbol 85 MovieClip [states_39_graphic] |
"ins_states_40_button" | Frame 2 | Symbol 87 MovieClip [states_40_graphic] |
"ins_states_41_button" | Frame 2 | Symbol 89 MovieClip [states_41_graphic] |
"ins_states_42_button" | Frame 2 | Symbol 91 MovieClip [states_42_graphic] |
"ins_states_43_button" | Frame 2 | Symbol 93 MovieClip [states_43_graphic] |
"ins_states_44_button" | Frame 2 | Symbol 95 MovieClip [states_44_graphic] |
"ins_states_45_button" | Frame 2 | Symbol 97 MovieClip [states_45_graphic] |
"ins_states_46_button" | Frame 2 | Symbol 99 MovieClip [states_46_graphic] |
"ins_states_47_button" | Frame 2 | Symbol 101 MovieClip [states_47_graphic] |
"ins_states_48_button" | Frame 2 | Symbol 103 MovieClip [states_48_graphic] |
"ins_states_49_button" | Frame 2 | Symbol 105 MovieClip [states_49_graphic] |
"ins_states_50_button" | Frame 2 | Symbol 107 MovieClip [states_50_graphic] |
"ins_states_8_button" | Frame 2 | Symbol 11 MovieClip [states_8_graphic] |
"ins_states_36_button" | Frame 2 | Symbol 109 MovieClip [states_36_graphic] |
"ins_states_18_button" | Frame 2 | Symbol 13 MovieClip [states_18_graphic] |
"ins_states_36_bogus_target" | Frame 2 | Symbol 109 MovieClip [states_36_graphic] |
"ins_state_to_pick" | Frame 2 | Symbol 117 EditableText |
"ins_Incorrect_Text" | Frame 2 | Symbol 120 EditableText |
"ins_instructions" | Frame 2 | Symbol 121 EditableText |
"insGameOver" | Frame 2 | Symbol 122 EditableText |
"ins_ok_button" | Frame 2 | Symbol 129 Button |
"insClipScore" | Frame 3 | Symbol 147 MovieClip |
"ins_state_to_pick" | Frame 4 | Symbol 148 EditableText |
"ins_Incorrect_Text" | Frame 4 | Symbol 150 EditableText |
"ins_instructions" | Frame 4 | Symbol 151 EditableText |
"insGameOver" | Frame 4 | Symbol 152 EditableText |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "good1_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "great2_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "keypress_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "Latch_Slide" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "M_Error" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "right1_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "right5_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "yes2_sound" |
ExportAssets (56) | Timeline Frame 2 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 13 as "states_18_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 15 as "states_2_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 17 as "states_1_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 19 as "states_3_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 21 as "states_4_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 23 as "states_5_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 25 as "states_6_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 27 as "states_7_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 29 as "states_9_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 31 as "states_10_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 33 as "states_11_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 35 as "states_12_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 37 as "states_13_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 39 as "states_14_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 41 as "states_15_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 43 as "states_16_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 45 as "states_17_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 47 as "states_19_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 49 as "states_20_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 51 as "states_21_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 53 as "states_22_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 55 as "states_23_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 57 as "states_24_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 59 as "states_25_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 61 as "states_26_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 63 as "states_27_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 65 as "states_28_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 67 as "states_29_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 69 as "states_30_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 71 as "states_31_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 73 as "states_32_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 75 as "states_33_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 77 as "states_34_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 79 as "states_35_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 81 as "states_37_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 83 as "states_38_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 85 as "states_39_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 87 as "states_40_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 89 as "states_41_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 91 as "states_42_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 93 as "states_43_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 95 as "states_44_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 97 as "states_45_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 99 as "states_46_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 101 as "states_47_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 103 as "states_48_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 105 as "states_49_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 107 as "states_50_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 109 as "states_36_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 13 as "states_18_graphic" |
ExportAssets (56) | Timeline Frame 2 | Symbol 109 as "states_36_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 13 as "states_18_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 15 as "states_2_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 17 as "states_1_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 19 as "states_3_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 21 as "states_4_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 23 as "states_5_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 25 as "states_6_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 27 as "states_7_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 29 as "states_9_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 31 as "states_10_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 33 as "states_11_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 35 as "states_12_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 37 as "states_13_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 39 as "states_14_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 41 as "states_15_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 43 as "states_16_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 45 as "states_17_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 47 as "states_19_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 49 as "states_20_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 51 as "states_21_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 53 as "states_22_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 55 as "states_23_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 57 as "states_24_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 59 as "states_25_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 61 as "states_26_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 63 as "states_27_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 65 as "states_28_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 67 as "states_29_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 69 as "states_30_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 71 as "states_31_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 73 as "states_32_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 75 as "states_33_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 77 as "states_34_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 79 as "states_35_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 81 as "states_37_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 83 as "states_38_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 85 as "states_39_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 87 as "states_40_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 89 as "states_41_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 91 as "states_42_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 93 as "states_43_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 95 as "states_44_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 97 as "states_45_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 99 as "states_46_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 101 as "states_47_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 103 as "states_48_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 105 as "states_49_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 107 as "states_50_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 109 as "states_36_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 13 as "states_18_graphic" |
ExportAssets (56) | Timeline Frame 3 | Symbol 109 as "states_36_graphic" |
ExportAssets (56) | Timeline Frame 4 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 4 | Symbol 13 as "states_18_graphic" |
ExportAssets (56) | Timeline Frame 4 | Symbol 11 as "states_8_graphic" |
ExportAssets (56) | Timeline Frame 4 | Symbol 13 as "states_18_graphic" |
Labels
"frmGame" | Frame 2 |
"frmScore" | Frame 3 |
Dynamic Text Variables
gScoreText | Symbol 118 EditableText | "" |
Incorrect_Text | Symbol 120 EditableText | "" |
txtError | Symbol 142 EditableText | "" |
txtTime | Symbol 143 EditableText | "" |
txtScore | Symbol 146 EditableText | "" |
gScoreText | Symbol 149 EditableText | "" |
Incorrect_Text | Symbol 150 EditableText | "" |
|