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

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

states_experiment_drag-drop_Intermed_State15s_500.swf

This is the info page for
Flash #4696

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


Text
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

ActionScript [AS1/AS2]

Frame 1
Stage.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 () { if (this._framesloaded == this._totalframes) { preload_mc.removeMovieClip(); this.gotoAndPlay("frmGame"); delete this.onEnterFrame; } }; stop();
Frame 2
function randomizeChoices() { count = 0; while (count < gChoices.length) { gRandomOrder[count] = count; count++; } count = 0; while (count < gChoices.length) { var swap = parseInt(Math.random() * gChoices.length, 10); var placeholder = gChoices[swap]; gChoices[swap] = gChoices[count]; gChoices[count] = placeholder; placeholder = gRandomOrder[swap]; gRandomOrder[swap] = gRandomOrder[count]; gRandomOrder[count] = placeholder; 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 { var gEndTime = getTimer(); var TotalTime = Math.round((gEndTime - gStartTime) / 1000); var score = Math.round((gTotalCorrect / gChoices.length) * 100); var count = 0; while (count < gChoices.length) { this[("ins_states_" + (count + 1)) + "_button"]._alpha = 0; eval ("_root." + gChoices[count]).removeMovieClip(); count++; } gotoAndStop (3); insGameOver._visible = true; insClipScore.txtScore = score + "%"; insClipScore.txtError = Average_Distance_Error + " Miles"; insClipScore.txtTime = TotalTime + " Secs"; ins_state_to_pick.text = ""; Incorrect_Text = Incorrect_Text + ""; } } 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 Button
on (release) { _parent.playAgain(); }
Symbol 140 Button
on (release) { getURL ("javascript:window.close();"); }

Library Items

Symbol 1 Sound [yes2_sound]
Symbol 2 Sound [right5_sound]
Symbol 3 Sound [right1_sound]
Symbol 4 Sound [M_Error]
Symbol 5 Sound [Latch_Slide]
Symbol 6 Sound [keypress_sound]
Symbol 7 Sound [great2_sound]
Symbol 8 Sound [good1_sound]
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClip [states_36_graphic]Uses:9Used by:Timeline
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClip [states_50_graphic]Uses:11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClip [states_49_graphic]Uses:13Used by:Timeline
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClip [states_48_graphic]Uses:15Used by:Timeline
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClip [states_47_graphic]Uses:17Used by:Timeline
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip [states_46_graphic]Uses:19Used by:Timeline
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClip [states_45_graphic]Uses:21Used by:Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClip [states_44_graphic]Uses:23Used by:Timeline
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip [states_43_graphic]Uses:25Used by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClip [states_42_graphic]Uses:27Used by:Timeline
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClip [states_41_graphic]Uses:29Used by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClip [states_40_graphic]Uses:31Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip [states_39_graphic]Uses:33Used by:Timeline
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClip [states_38_graphic]Uses:35Used by:Timeline
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClip [states_37_graphic]Uses:37Used by:Timeline
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClip [states_35_graphic]Uses:39Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClip [states_34_graphic]Uses:41Used by:Timeline
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClip [states_33_graphic]Uses:43Used by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClip [states_32_graphic]Uses:45Used by:Timeline
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClip [states_31_graphic]Uses:47Used by:Timeline
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClip [states_30_graphic]Uses:49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClip [states_29_graphic]Uses:51Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClip [states_28_graphic]Uses:53Used by:Timeline
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClip [states_27_graphic]Uses:55Used by:Timeline
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClip [states_26_graphic]Uses:57Used by:Timeline
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClip [states_25_graphic]Uses:59Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClip [states_24_graphic]Uses:61Used by:Timeline
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClip [states_23_graphic]Uses:63Used by:Timeline
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClip [states_22_graphic]Uses:65Used by:Timeline
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClip [states_21_graphic]Uses:67Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClip [states_20_graphic]Uses:69Used by:Timeline
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClip [states_19_graphic]Uses:71Used by:Timeline
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClip [states_17_graphic]Uses:73Used by:Timeline
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClip [states_16_graphic]Uses:75Used by:Timeline
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClip [states_15_graphic]Uses:77Used by:Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClip [states_14_graphic]Uses:79Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClip [states_13_graphic]Uses:81Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClip [states_12_graphic]Uses:83Used by:Timeline
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClip [states_11_graphic]Uses:85Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClip [states_10_graphic]Uses:87Used by:Timeline
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClip [states_9_graphic]Uses:89Used by:Timeline
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClip [states_7_graphic]Uses:91Used by:Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClip [states_6_graphic]Uses:93Used by:Timeline
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClip [states_5_graphic]Uses:95Used by:Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClip [states_4_graphic]Uses:97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClip [states_3_graphic]Uses:99Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClip [states_1_graphic]Uses:101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClip [states_2_graphic]Uses:103Used by:Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClip [states_18_graphic]Uses:105Used by:Timeline
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClip [states_8_graphic]Uses:107Used by:Timeline
Symbol 109 GraphicUsed by:Timeline
Symbol 110 GraphicUsed by:115
Symbol 111 FontUsed by:112 113 114
Symbol 112 TextUses:111Used by:115
Symbol 113 TextUses:111Used by:115
Symbol 114 TextUses:111Used by:115
Symbol 115 MovieClipUses:110 112 113 114Used by:Timeline
Symbol 116 FontUsed by:117 118 121 141 142 143 144 145 146
Symbol 117 EditableTextUses:116Used by:Timeline
Symbol 118 EditableTextUses:116Used by:Timeline
Symbol 119 FontUsed by:120 122
Symbol 120 EditableTextUses:119Used by:Timeline
Symbol 121 EditableTextUses:116Used by:Timeline
Symbol 122 EditableTextUses:119Used by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:129
Symbol 125 FontUsed by:126 133 138
Symbol 126 TextUses:125Used by:129
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:129
Symbol 129 ButtonUses:124 126 128Used by:Timeline
Symbol 130 GraphicUsed by:147
Symbol 131 BitmapUsed by:132 134
Symbol 132 GraphicUses:131Used by:135
Symbol 133 TextUses:125Used by:135
Symbol 134 GraphicUses:131Used by:135
Symbol 135 ButtonUses:132 133 134Used by:147
Symbol 136 BitmapUsed by:137 139
Symbol 137 GraphicUses:136Used by:140
Symbol 138 TextUses:125Used by:140
Symbol 139 GraphicUses:136Used by:140
Symbol 140 ButtonUses:137 138 139Used by:147
Symbol 141 TextUses:116Used by:147
Symbol 142 EditableTextUses:116Used by:147
Symbol 143 EditableTextUses:116Used by:147
Symbol 144 TextUses:116Used by:147
Symbol 145 TextUses:116Used by:147
Symbol 146 EditableTextUses:116Used by:147
Symbol 147 MovieClipUses:130 135 140 141 142 143 144 145 146Used by:Timeline

Instance Names

"ins_states8_graphic"Frame 2Symbol 108 MovieClip [states_8_graphic]
"ins_states_18_graphic"Frame 2Symbol 106 MovieClip [states_18_graphic]
"ins_states_2_button"Frame 2Symbol 104 MovieClip [states_2_graphic]
"ins_states_1_button"Frame 2Symbol 102 MovieClip [states_1_graphic]
"ins_states_3_button"Frame 2Symbol 100 MovieClip [states_3_graphic]
"ins_states_4_button"Frame 2Symbol 98 MovieClip [states_4_graphic]
"ins_states_5_button"Frame 2Symbol 96 MovieClip [states_5_graphic]
"ins_states_6_button"Frame 2Symbol 94 MovieClip [states_6_graphic]
"ins_states_7_button"Frame 2Symbol 92 MovieClip [states_7_graphic]
"ins_states_9_button"Frame 2Symbol 90 MovieClip [states_9_graphic]
"ins_states_10_button"Frame 2Symbol 88 MovieClip [states_10_graphic]
"ins_states_11_button"Frame 2Symbol 86 MovieClip [states_11_graphic]
"ins_states_12_button"Frame 2Symbol 84 MovieClip [states_12_graphic]
"ins_states_13_button"Frame 2Symbol 82 MovieClip [states_13_graphic]
"ins_states_14_button"Frame 2Symbol 80 MovieClip [states_14_graphic]
"ins_states_15_button"Frame 2Symbol 78 MovieClip [states_15_graphic]
"ins_states_16_button"Frame 2Symbol 76 MovieClip [states_16_graphic]
"ins_states_17_button"Frame 2Symbol 74 MovieClip [states_17_graphic]
"ins_states_19_button"Frame 2Symbol 72 MovieClip [states_19_graphic]
"ins_states_20_button"Frame 2Symbol 70 MovieClip [states_20_graphic]
"ins_states_21_button"Frame 2Symbol 68 MovieClip [states_21_graphic]
"ins_states_22_button"Frame 2Symbol 66 MovieClip [states_22_graphic]
"ins_states_23_button"Frame 2Symbol 64 MovieClip [states_23_graphic]
"ins_states_24_button"Frame 2Symbol 62 MovieClip [states_24_graphic]
"ins_states_25_button"Frame 2Symbol 60 MovieClip [states_25_graphic]
"ins_states_26_button"Frame 2Symbol 58 MovieClip [states_26_graphic]
"ins_states_27_button"Frame 2Symbol 56 MovieClip [states_27_graphic]
"ins_states_28_button"Frame 2Symbol 54 MovieClip [states_28_graphic]
"ins_states_29_button"Frame 2Symbol 52 MovieClip [states_29_graphic]
"ins_states_30_button"Frame 2Symbol 50 MovieClip [states_30_graphic]
"ins_states_31_button"Frame 2Symbol 48 MovieClip [states_31_graphic]
"ins_states_32_button"Frame 2Symbol 46 MovieClip [states_32_graphic]
"ins_states_33_button"Frame 2Symbol 44 MovieClip [states_33_graphic]
"ins_states_34_button"Frame 2Symbol 42 MovieClip [states_34_graphic]
"ins_states_35_button"Frame 2Symbol 40 MovieClip [states_35_graphic]
"ins_states_37_button"Frame 2Symbol 38 MovieClip [states_37_graphic]
"ins_states_38_button"Frame 2Symbol 36 MovieClip [states_38_graphic]
"ins_states_39_button"Frame 2Symbol 34 MovieClip [states_39_graphic]
"ins_states_40_button"Frame 2Symbol 32 MovieClip [states_40_graphic]
"ins_states_41_button"Frame 2Symbol 30 MovieClip [states_41_graphic]
"ins_states_42_button"Frame 2Symbol 28 MovieClip [states_42_graphic]
"ins_states_43_button"Frame 2Symbol 26 MovieClip [states_43_graphic]
"ins_states_44_button"Frame 2Symbol 24 MovieClip [states_44_graphic]
"ins_states_45_button"Frame 2Symbol 22 MovieClip [states_45_graphic]
"ins_states_46_button"Frame 2Symbol 20 MovieClip [states_46_graphic]
"ins_states_47_button"Frame 2Symbol 18 MovieClip [states_47_graphic]
"ins_states_48_button"Frame 2Symbol 16 MovieClip [states_48_graphic]
"ins_states_49_button"Frame 2Symbol 14 MovieClip [states_49_graphic]
"ins_states_50_button"Frame 2Symbol 12 MovieClip [states_50_graphic]
"ins_states_8_button"Frame 2Symbol 108 MovieClip [states_8_graphic]
"ins_states_36_button"Frame 2Symbol 10 MovieClip [states_36_graphic]
"ins_states_18_button"Frame 2Symbol 106 MovieClip [states_18_graphic]
"ins_states_36_bogus_target"Frame 2Symbol 10 MovieClip [states_36_graphic]
"ins_state_to_pick"Frame 2Symbol 117 EditableText
"ins_Incorrect_Text"Frame 2Symbol 120 EditableText
"ins_instructions"Frame 2Symbol 121 EditableText
"insGameOver"Frame 2Symbol 122 EditableText
"ins_ok_button"Frame 2Symbol 129 Button
"insClipScore"Frame 3Symbol 147 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "yes2_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "right5_sound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "right1_sound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "M_Error"
ExportAssets (56)Timeline Frame 1Symbol 5 as "Latch_Slide"
ExportAssets (56)Timeline Frame 1Symbol 6 as "keypress_sound"
ExportAssets (56)Timeline Frame 1Symbol 7 as "great2_sound"
ExportAssets (56)Timeline Frame 1Symbol 8 as "good1_sound"
ExportAssets (56)Timeline Frame 1Symbol 10 as "states_36_graphic"
ExportAssets (56)Timeline Frame 1Symbol 12 as "states_50_graphic"
ExportAssets (56)Timeline Frame 1Symbol 14 as "states_49_graphic"
ExportAssets (56)Timeline Frame 1Symbol 16 as "states_48_graphic"
ExportAssets (56)Timeline Frame 1Symbol 18 as "states_47_graphic"
ExportAssets (56)Timeline Frame 1Symbol 20 as "states_46_graphic"
ExportAssets (56)Timeline Frame 1Symbol 22 as "states_45_graphic"
ExportAssets (56)Timeline Frame 1Symbol 24 as "states_44_graphic"
ExportAssets (56)Timeline Frame 1Symbol 26 as "states_43_graphic"
ExportAssets (56)Timeline Frame 1Symbol 28 as "states_42_graphic"
ExportAssets (56)Timeline Frame 1Symbol 30 as "states_41_graphic"
ExportAssets (56)Timeline Frame 1Symbol 32 as "states_40_graphic"
ExportAssets (56)Timeline Frame 1Symbol 34 as "states_39_graphic"
ExportAssets (56)Timeline Frame 1Symbol 36 as "states_38_graphic"
ExportAssets (56)Timeline Frame 1Symbol 38 as "states_37_graphic"
ExportAssets (56)Timeline Frame 1Symbol 40 as "states_35_graphic"
ExportAssets (56)Timeline Frame 1Symbol 42 as "states_34_graphic"
ExportAssets (56)Timeline Frame 1Symbol 44 as "states_33_graphic"
ExportAssets (56)Timeline Frame 1Symbol 46 as "states_32_graphic"
ExportAssets (56)Timeline Frame 1Symbol 48 as "states_31_graphic"
ExportAssets (56)Timeline Frame 1Symbol 50 as "states_30_graphic"
ExportAssets (56)Timeline Frame 1Symbol 52 as "states_29_graphic"
ExportAssets (56)Timeline Frame 1Symbol 54 as "states_28_graphic"
ExportAssets (56)Timeline Frame 1Symbol 56 as "states_27_graphic"
ExportAssets (56)Timeline Frame 1Symbol 58 as "states_26_graphic"
ExportAssets (56)Timeline Frame 1Symbol 60 as "states_25_graphic"
ExportAssets (56)Timeline Frame 1Symbol 62 as "states_24_graphic"
ExportAssets (56)Timeline Frame 1Symbol 64 as "states_23_graphic"
ExportAssets (56)Timeline Frame 1Symbol 66 as "states_22_graphic"
ExportAssets (56)Timeline Frame 1Symbol 68 as "states_21_graphic"
ExportAssets (56)Timeline Frame 1Symbol 70 as "states_20_graphic"
ExportAssets (56)Timeline Frame 1Symbol 72 as "states_19_graphic"
ExportAssets (56)Timeline Frame 1Symbol 74 as "states_17_graphic"
ExportAssets (56)Timeline Frame 1Symbol 76 as "states_16_graphic"
ExportAssets (56)Timeline Frame 1Symbol 78 as "states_15_graphic"
ExportAssets (56)Timeline Frame 1Symbol 80 as "states_14_graphic"
ExportAssets (56)Timeline Frame 1Symbol 82 as "states_13_graphic"
ExportAssets (56)Timeline Frame 1Symbol 84 as "states_12_graphic"
ExportAssets (56)Timeline Frame 1Symbol 86 as "states_11_graphic"
ExportAssets (56)Timeline Frame 1Symbol 88 as "states_10_graphic"
ExportAssets (56)Timeline Frame 1Symbol 90 as "states_9_graphic"
ExportAssets (56)Timeline Frame 1Symbol 92 as "states_7_graphic"
ExportAssets (56)Timeline Frame 1Symbol 94 as "states_6_graphic"
ExportAssets (56)Timeline Frame 1Symbol 96 as "states_5_graphic"
ExportAssets (56)Timeline Frame 1Symbol 98 as "states_4_graphic"
ExportAssets (56)Timeline Frame 1Symbol 100 as "states_3_graphic"
ExportAssets (56)Timeline Frame 1Symbol 102 as "states_1_graphic"
ExportAssets (56)Timeline Frame 1Symbol 104 as "states_2_graphic"
ExportAssets (56)Timeline Frame 1Symbol 106 as "states_18_graphic"
ExportAssets (56)Timeline Frame 1Symbol 108 as "states_8_graphic"
ExportAssets (56)Timeline Frame 2Symbol 108 as "states_8_graphic"
ExportAssets (56)Timeline Frame 2Symbol 106 as "states_18_graphic"
ExportAssets (56)Timeline Frame 2Symbol 104 as "states_2_graphic"
ExportAssets (56)Timeline Frame 2Symbol 102 as "states_1_graphic"
ExportAssets (56)Timeline Frame 2Symbol 100 as "states_3_graphic"
ExportAssets (56)Timeline Frame 2Symbol 98 as "states_4_graphic"
ExportAssets (56)Timeline Frame 2Symbol 96 as "states_5_graphic"
ExportAssets (56)Timeline Frame 2Symbol 94 as "states_6_graphic"
ExportAssets (56)Timeline Frame 2Symbol 92 as "states_7_graphic"
ExportAssets (56)Timeline Frame 2Symbol 90 as "states_9_graphic"
ExportAssets (56)Timeline Frame 2Symbol 88 as "states_10_graphic"
ExportAssets (56)Timeline Frame 2Symbol 86 as "states_11_graphic"
ExportAssets (56)Timeline Frame 2Symbol 84 as "states_12_graphic"
ExportAssets (56)Timeline Frame 2Symbol 82 as "states_13_graphic"
ExportAssets (56)Timeline Frame 2Symbol 80 as "states_14_graphic"
ExportAssets (56)Timeline Frame 2Symbol 78 as "states_15_graphic"
ExportAssets (56)Timeline Frame 2Symbol 76 as "states_16_graphic"
ExportAssets (56)Timeline Frame 2Symbol 74 as "states_17_graphic"
ExportAssets (56)Timeline Frame 2Symbol 72 as "states_19_graphic"
ExportAssets (56)Timeline Frame 2Symbol 70 as "states_20_graphic"
ExportAssets (56)Timeline Frame 2Symbol 68 as "states_21_graphic"
ExportAssets (56)Timeline Frame 2Symbol 66 as "states_22_graphic"
ExportAssets (56)Timeline Frame 2Symbol 64 as "states_23_graphic"
ExportAssets (56)Timeline Frame 2Symbol 62 as "states_24_graphic"
ExportAssets (56)Timeline Frame 2Symbol 60 as "states_25_graphic"
ExportAssets (56)Timeline Frame 2Symbol 58 as "states_26_graphic"
ExportAssets (56)Timeline Frame 2Symbol 56 as "states_27_graphic"
ExportAssets (56)Timeline Frame 2Symbol 54 as "states_28_graphic"
ExportAssets (56)Timeline Frame 2Symbol 52 as "states_29_graphic"
ExportAssets (56)Timeline Frame 2Symbol 50 as "states_30_graphic"
ExportAssets (56)Timeline Frame 2Symbol 48 as "states_31_graphic"
ExportAssets (56)Timeline Frame 2Symbol 46 as "states_32_graphic"
ExportAssets (56)Timeline Frame 2Symbol 44 as "states_33_graphic"
ExportAssets (56)Timeline Frame 2Symbol 42 as "states_34_graphic"
ExportAssets (56)Timeline Frame 2Symbol 40 as "states_35_graphic"
ExportAssets (56)Timeline Frame 2Symbol 38 as "states_37_graphic"
ExportAssets (56)Timeline Frame 2Symbol 36 as "states_38_graphic"
ExportAssets (56)Timeline Frame 2Symbol 34 as "states_39_graphic"
ExportAssets (56)Timeline Frame 2Symbol 32 as "states_40_graphic"
ExportAssets (56)Timeline Frame 2Symbol 30 as "states_41_graphic"
ExportAssets (56)Timeline Frame 2Symbol 28 as "states_42_graphic"
ExportAssets (56)Timeline Frame 2Symbol 26 as "states_43_graphic"
ExportAssets (56)Timeline Frame 2Symbol 24 as "states_44_graphic"
ExportAssets (56)Timeline Frame 2Symbol 22 as "states_45_graphic"
ExportAssets (56)Timeline Frame 2Symbol 20 as "states_46_graphic"
ExportAssets (56)Timeline Frame 2Symbol 18 as "states_47_graphic"
ExportAssets (56)Timeline Frame 2Symbol 16 as "states_48_graphic"
ExportAssets (56)Timeline Frame 2Symbol 14 as "states_49_graphic"
ExportAssets (56)Timeline Frame 2Symbol 12 as "states_50_graphic"
ExportAssets (56)Timeline Frame 2Symbol 108 as "states_8_graphic"
ExportAssets (56)Timeline Frame 2Symbol 10 as "states_36_graphic"
ExportAssets (56)Timeline Frame 2Symbol 106 as "states_18_graphic"
ExportAssets (56)Timeline Frame 2Symbol 10 as "states_36_graphic"
ExportAssets (56)Timeline Frame 3Symbol 108 as "states_8_graphic"
ExportAssets (56)Timeline Frame 3Symbol 106 as "states_18_graphic"
ExportAssets (56)Timeline Frame 3Symbol 104 as "states_2_graphic"
ExportAssets (56)Timeline Frame 3Symbol 102 as "states_1_graphic"
ExportAssets (56)Timeline Frame 3Symbol 100 as "states_3_graphic"
ExportAssets (56)Timeline Frame 3Symbol 98 as "states_4_graphic"
ExportAssets (56)Timeline Frame 3Symbol 96 as "states_5_graphic"
ExportAssets (56)Timeline Frame 3Symbol 94 as "states_6_graphic"
ExportAssets (56)Timeline Frame 3Symbol 92 as "states_7_graphic"
ExportAssets (56)Timeline Frame 3Symbol 90 as "states_9_graphic"
ExportAssets (56)Timeline Frame 3Symbol 88 as "states_10_graphic"
ExportAssets (56)Timeline Frame 3Symbol 86 as "states_11_graphic"
ExportAssets (56)Timeline Frame 3Symbol 84 as "states_12_graphic"
ExportAssets (56)Timeline Frame 3Symbol 82 as "states_13_graphic"
ExportAssets (56)Timeline Frame 3Symbol 80 as "states_14_graphic"
ExportAssets (56)Timeline Frame 3Symbol 78 as "states_15_graphic"
ExportAssets (56)Timeline Frame 3Symbol 76 as "states_16_graphic"
ExportAssets (56)Timeline Frame 3Symbol 74 as "states_17_graphic"
ExportAssets (56)Timeline Frame 3Symbol 72 as "states_19_graphic"
ExportAssets (56)Timeline Frame 3Symbol 70 as "states_20_graphic"
ExportAssets (56)Timeline Frame 3Symbol 68 as "states_21_graphic"
ExportAssets (56)Timeline Frame 3Symbol 66 as "states_22_graphic"
ExportAssets (56)Timeline Frame 3Symbol 64 as "states_23_graphic"
ExportAssets (56)Timeline Frame 3Symbol 62 as "states_24_graphic"
ExportAssets (56)Timeline Frame 3Symbol 60 as "states_25_graphic"
ExportAssets (56)Timeline Frame 3Symbol 58 as "states_26_graphic"
ExportAssets (56)Timeline Frame 3Symbol 56 as "states_27_graphic"
ExportAssets (56)Timeline Frame 3Symbol 54 as "states_28_graphic"
ExportAssets (56)Timeline Frame 3Symbol 52 as "states_29_graphic"
ExportAssets (56)Timeline Frame 3Symbol 50 as "states_30_graphic"
ExportAssets (56)Timeline Frame 3Symbol 48 as "states_31_graphic"
ExportAssets (56)Timeline Frame 3Symbol 46 as "states_32_graphic"
ExportAssets (56)Timeline Frame 3Symbol 44 as "states_33_graphic"
ExportAssets (56)Timeline Frame 3Symbol 42 as "states_34_graphic"
ExportAssets (56)Timeline Frame 3Symbol 40 as "states_35_graphic"
ExportAssets (56)Timeline Frame 3Symbol 38 as "states_37_graphic"
ExportAssets (56)Timeline Frame 3Symbol 36 as "states_38_graphic"
ExportAssets (56)Timeline Frame 3Symbol 34 as "states_39_graphic"
ExportAssets (56)Timeline Frame 3Symbol 32 as "states_40_graphic"
ExportAssets (56)Timeline Frame 3Symbol 30 as "states_41_graphic"
ExportAssets (56)Timeline Frame 3Symbol 28 as "states_42_graphic"
ExportAssets (56)Timeline Frame 3Symbol 26 as "states_43_graphic"
ExportAssets (56)Timeline Frame 3Symbol 24 as "states_44_graphic"
ExportAssets (56)Timeline Frame 3Symbol 22 as "states_45_graphic"
ExportAssets (56)Timeline Frame 3Symbol 20 as "states_46_graphic"
ExportAssets (56)Timeline Frame 3Symbol 18 as "states_47_graphic"
ExportAssets (56)Timeline Frame 3Symbol 16 as "states_48_graphic"
ExportAssets (56)Timeline Frame 3Symbol 14 as "states_49_graphic"
ExportAssets (56)Timeline Frame 3Symbol 12 as "states_50_graphic"
ExportAssets (56)Timeline Frame 3Symbol 108 as "states_8_graphic"
ExportAssets (56)Timeline Frame 3Symbol 10 as "states_36_graphic"
ExportAssets (56)Timeline Frame 3Symbol 106 as "states_18_graphic"
ExportAssets (56)Timeline Frame 3Symbol 10 as "states_36_graphic"

Labels

"frmGame"Frame 2
"frmScore"Frame 3

Dynamic Text Variables

gScoreTextSymbol 118 EditableText""
Incorrect_TextSymbol 120 EditableText""
txtErrorSymbol 142 EditableText""
txtTimeSymbol 143 EditableText""
txtScoreSymbol 146 EditableText""




http://swfchan.com/1/4696/info.shtml
Created: 16/6 -2019 16:25:08 Last modified: 16/6 -2019 16:25:08 Server time: 30/04 -2024 14:30:48