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

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

MUPIT - something stupid.swf

This is the info page for
Flash #19578

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


ActionScript [AS1/AS2]
Instance of Symbol 19 MovieClip in Frame 1
//component parameters onClipEvent (initialize) { xin_motion_val = "Down"; xin_alphatype_val = "Yes"; xout_motion_val = "Down"; xout_alphatype_val = "Yes"; perc_req_val = 100; show_perc_val = "Yes"; slow_factor_val = 0.2; init_action_val = "_root.stop();"; play_action_val = "_root.play();"; }
Instance of Symbol 10 MovieClip "bar" in Symbol 12 MovieClip Frame 1
/* no clip actions */
Symbol 19 MovieClip Frame 1
stop();
Instance of Symbol 17 MovieClip "swfloader" in Symbol 19 MovieClip Frame 1
onClipEvent (load) { function strip_spaces(str) { var _str = new String(""); var j = 0; while (j < str.length) { if ((str.charAt(j) != " ") && (str.charAt(j) != ";")) { _str = _str + str.charAt(j); } j++; } return(_str); } function simple_script(action, timeline) { action = strip_spaces(action); if ((action.length > 0) && ((action.indexOf(")") != -1) && (action.indexOf("(") != -1))) { var sections = action.split("."); var timeline_action = sections.pop(); var first_paren = timeline_action.indexOf("("); var second_paren = timeline_action.indexOf(")"); var timeline_function = timeline_action.substr(0, first_paren); var function_parameter = timeline_action.substr(first_paren + 1, second_paren - (first_paren + 1)); var timeline_reference = timeline; var j = 0; while (j < sections.length) { timeline_reference = timeline_reference[sections[j]]; j++; } if (function_parameter.indexOf("\"") != -1) { function_parameter = function_parameter.substr(1, function_parameter.length - 2); } timeline_reference[timeline_function](function_parameter); } } function execute_action() { unloaded = true; _parent._visible = false; simple_script(_parent.play_action_val, _parent); } _parent.anim.gotoAndStop(1); simple_script(_parent.init_action_val, _parent); var done = false; var unloaded = false; var orig_x = _parent._x; var orig_y = _parent._y; var dist_x = (_parent._x + ((_parent._width * 2) / 3)); var dist_y = (_parent._y + ((_parent._height * 2) / 3)); var orig_a = _parent._alpha; var accel_jump = 0.75; var slow_factor = _parent.slow_factor_val; var speed_factor = (1 + (slow_factor / (1 - slow_factor))); var ready = false; var perc_fadeout = 0; _parent.perc._x = _parent.anim._x - (_parent.perc._width / 2); _parent.perc._y = _parent.anim._y - (_parent.perc._height / 2); if (slow_factor < 1) { switch (_parent.xin_motion_val) { case "Up" : _parent._y = orig_y + (dist_y * 2); break; case "Down" : _parent._y = orig_y - (dist_y * 2); break; case "Left" : _parent._x = orig_x + (dist_x * 2); break; case "Right" : _parent._x = orig_x - (dist_x * 2); break; case "Toward" : _parent._xscale = (_parent._yscale = 1); break; case "None" : _parent._alpha = 0; } } else { ready = true; } } onClipEvent (enterFrame) { if (unloaded) { return(undefined); } if (!ready) { switch (_parent.xin_motion_val) { case "Toward" : _parent._xscale = _parent._xscale + ((100 - _parent._xscale) * slow_factor); _parent._yscale = _parent._xscale; if (_parent.xin_alphatype_val == "Yes") { _parent._alpha = Math.round((orig_a / 100) * Math.max(0, Math.min(_parent._xscale, 100))); } if (Math.abs(100 - _parent._xscale) < 0.5) { _parent._xscale = (_parent._yscale = 100); _parent._alpha = orig_a; ready = true; } break; default : _parent._x = _parent._x + ((orig_x - _parent._x) * slow_factor); _parent._y = _parent._y + ((orig_y - _parent._y) * slow_factor); if (_parent.xin_alphatype_val == "Yes") { if (_parent.xin_motion_val == "None") { _parent._alpha = _parent._alpha + ((orig_a - _parent._alpha) * slow_factor); } else if (Math.abs(orig_x - _parent._x) > Math.abs(orig_y - _parent._y)) { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x)) * 100); } else { _parent._alpha = 100 - Math.round(((orig_a / 100) * (Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y)) * 100); } } if (!(((_parent.xin_motion_val == "None") && (Math.abs(_parent._alpha - orig_a) <= 1)) || (((_parent.xin_motion_val != "None") && (Math.abs(_parent._y - orig_y) < 0.5)) && (Math.abs(_parent._x - orig_x) < 0.5)))) { break; } _parent._x = orig_x; _parent._y = orig_y; _parent._alpha = orig_a; ready = true; } } else if (!done) { var rl = _root.getBytesLoaded(); var rt = (_root.getBytesTotal() * (_parent.perc_req_val / 100)); if ((rl > 10) && (rt > 10)) { rl = Math.min(rl, rt); var new_frame = (_parent.anim._currentframe + Math.ceil(((_parent.anim._totalframes * (rl / rt)) - _parent.anim._currentframe) / 4)); new_frame = Math.max(1, new_frame); if (_parent.show_perc_val == "Yes") { _parent.perc.text = Math.round(((new_frame - 1) / (_parent.anim._totalframes - 1)) * 100) + " %"; } if (new_frame != _parent.anim._currentframe) { _parent.anim.gotoAndStop(new_frame); } if ((_parent.anim._totalframes == _parent.anim._currentframe) && (rl >= rt)) { done = true; } } } else if (slow_factor < 1) { switch (_parent.xout_motion_val) { case "Down" : if (_parent._y <= orig_y) { _parent._y = orig_y + accel_jump; } _parent._y = orig_y + (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if (_parent._y > (orig_y + (dist_y * 2))) { execute_action(); } break; case "Up" : if (_parent._y >= orig_y) { _parent._y = orig_y - accel_jump; } _parent._y = orig_y - (Math.abs(_parent._y - orig_y) * speed_factor); perc_fadeout = Math.round((Math.min(dist_y, Math.abs(_parent._y - orig_y)) / dist_y) * 100); if (_parent._y < (orig_y - (dist_y * 2))) { execute_action(); } break; case "Right" : if (_parent._x <= orig_x) { _parent._x = orig_x + accel_jump; } _parent._x = orig_x + (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x > (orig_x + (dist_x * 2))) { execute_action(); } break; case "Left" : if (_parent._x >= orig_x) { _parent._x = orig_x - accel_jump; } _parent._x = orig_x - (Math.abs(_parent._x - orig_x) * speed_factor); perc_fadeout = Math.round((Math.min(dist_x, Math.abs(_parent._x - orig_x)) / dist_x) * 100); if (_parent._x < (orig_x - (dist_x * 2))) { execute_action(); } break; case "Away" : if ((_parent._xscale >= 100) || (_parent._yscale >= 100)) { _parent._xscale = (_parent._yscale = 100 - accel_jump); } _parent._xscale = (_parent._yscale = Math.max(0.5, 100 - ((100 - _parent._yscale) * speed_factor))); perc_fadeout = 100 - Math.round(Math.max(0, Math.min(_parent._xscale, 100))); if (_parent._xscale < 1) { execute_action(); } break; default : perc_fadeout = perc_fadeout + ((100 - perc_fadeout) * slow_factor); if (Math.abs(perc_fadeout - 100) > 1) { break; } execute_action(); } if (!(_parent.xout_alphatype_val === "Yes")) { } else { _parent._alpha = (orig_a / 100) * (100 - perc_fadeout); } } else { execute_action(); } }

Library Items

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

Instance Names

"bar"Symbol 12 MovieClip Frame 1Symbol 10 MovieClip
"anim"Symbol 19 MovieClip Frame 1Symbol 12 MovieClip
"perc"Symbol 19 MovieClip Frame 1Symbol 15 MovieClip
"swfloader"Symbol 19 MovieClip Frame 1Symbol 17 MovieClip

Dynamic Text Variables

textSymbol 14 EditableText""




http://swfchan.com/4/19578/info.shtml
Created: 29/5 -2019 20:27:23 Last modified: 29/5 -2019 20:27:23 Server time: 28/04 -2024 19:57:16