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

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

Basic Interactive Flash Tutorial.swf

This is the info page for
Flash #28967

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


Text
Basic Interactive
Flash Tutorial

Loading

Loading.

Loading..

Loading...

In this tutorial I will teach you:

1) How to make a Dress-Up Game

2) How to make a Soundboard

3) How to make a Magic 8 Ball

4) How to make a Steady Hand Game

NOTE: You will need to know some Flash basics to
complete this tutorial

How to Make a Dress-Up Game

How to Make a Dress-Up Game

1) How to Make a Dress-Up Game

How to Make a SoundBoard

How to Make a SoundBoard

2) How to Make a SoundBoard

How to Make a Magic 8 Ball

How to Make a Magic 8 Ball

How to Make a Steady Hand Game

How to Make a Steady Hand Game

Credits

Credits

Example

Example

Back to Main Menu

Back to Main Menu

How to Make a Dress-Up Game

First, you will need to know how to:
Make A Button
Make A Movie Clip
Get into the Actions Tab

Ok, start off by pressing ctrl+f8 and select button.

Name it whatever you want but at the end of the name
put _btn. This is here to avoid confusion for later on.

mouth_btn

Now draw the item you want to be dragged and go
back to scene 1.

Now press ctrl+f8 again and choose movie clip. This time
use the same name as before but with a _mc at the end

I drew this:

mouth_mc

Now drag the button you created, from the library onto
the stage in the movie clip and go back to scene 1.

Drag the movie clip from the library to the stage and
go into its actions and input this code:

on(press) {
startDrag(this,false);
}
on(release) {
stopDrag();
}

There you have it! You can create multiple items to
make a full game.

Ex:

First, you will need to know how to:
Make A Button
Import Items from Library

How to make a SoundBoard

First, you need to got to File-Import-Library and
choose the sound you want to use.

button

Now go to Insert-New Symbol and select button.

Now draw your button and press f6 two times.
Press ctrl+l and drag your sound
on to the stage.

Go back to Scene 1 and drag your
button to the stage.

Absolutely
Dreadful

Absolutely
Dreadful

Simon Cowell SoundBoard

Ghastly

Ghastly

Killed
Song

Killed
Song

Wedding
Singer

Wedding
Singer

Wrong

Wrong

You're
Terrible

You're
Terrible

There you have it! Below is an example
of a simple soundboard.

How to Make A Magic 8 Ball

First, you will need to know how to:
Make a Button
Get into Actions Tab

Now, draw your Magic 8 Ball and make it a button.

In its Actions input this code:

on (release) {
function ansGen() {
generate = random(5);
ans = ["Ask again later",
"Yes",
"No",
"Maybe",
"Who cares"];
_root.textbox = ans[generate];
}
ansGen();
}

You can change the number of answers
by typing in the answer with quotes
around it and a comma at the end.
Be sure to change the number at the top
of the code to the same number of
answers you have.

textbox

Then, make a Input Text Box where
they can input their question.

Now, create a Dynamic Text Box and make its
variable name "textbox" without the quotes.

Type your question and click on
the Magic 8 Ball

There you have it! My example is below.

How to Make a Steady Hand Game

First, you will need to know how to:
Make A Button
Get into the Actions Tab

First, you will need to go to Insert- New Symbol
and pick button.

Inside of your button, select the square tool and make a square. Now draw
your maze type thing.

Ex.

Now you need to delete the inside of the maze and
convert everything else into a button.

= Button

Go to Scene 1 and put this action into the button:

on (rollOver) {
gotoAndStop(4);
}

Make a new layer and put it below the maze. Select the box tool again and
create a box of a different color underneath the maze.

Ex:

Put a stop action into the first frame and
make a new keyframe and put another stop
action there. (f6=new keyframe)

Play

Do the same thing with the finish
button but put it in frame 2 and
where you want the maze to end.

Create a button and name it play. Now go to Scene 1
and put the button in frame 1 where you want the
mouse to start.

In the Play button
put this action:

on (release) {
gotoAndPlay (2);
}

In the Finish button
put this action:

on (release) {
gotoAndStop (3);
}

Make a 3rd keyframe and insert a You Win!
and a button that goes to frame 1.

Make a 4th keyframe and insert a You Suck! and a
button that goes back to frame 1.

Play

Finish

Finish

You
Suck!

Play Again?

Play Again?

You
Win!

There you go! My example is below.

Ex.

Credits

Created By: George Perry

(inversecoma)

E-Mail: inversecoma@gmail.com

Dress-Up Game Example

SoundBoard Example

Magic 8 Ball Example

Steady Hand Game Example

ActionScript [AS1/AS2]

Frame 1
function __com_mochibot__(swfid, mc, lv) { var x; var g; var s; var fv; var sb; var u; var res; var mb; var mbc; mb = "__mochibot__"; mbc = "mochibot.com"; g = (_global ? (_global) : (_level0._root)); if (g[mb + swfid]) { return(g[mb + swfid]); } s = System.security; x = mc._root.getSWFVersion; fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5))); if (!s) { s = {}; } sb = s.sandboxType; if (sb == "localWithFile") { return(null); } x = s.allowDomain; if (x) { s.allowDomain(mbc); } x = s.allowInsecureDomain; if (x) { s.allowInsecureDomain(mbc); } u = ((((((((((("http://" + mbc) + "/my/core.swf?mv=5&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : ""); lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv)))); g[mb + "level"] = lv; if (fv == 5) { res = "_level" + lv; if (!eval (res)) { loadMovieNum (u, lv); } } else { res = mc.createEmptyMovieClip(mb + swfid, lv); res.loadMovie(u); } return(res); } __com_mochibot__("5312799d", this, 10301); stop();
Frame 131
stop();
Instance of Symbol 203 MovieClip in Frame 137
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 206 MovieClip in Frame 137
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 209 MovieClip in Frame 137
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 212 MovieClip in Frame 137
on (press) { startDrag (this); } on (release) { stopDrag(); }
Frame 141
stopAllSounds();
Instance of Symbol 203 MovieClip in Frame 154
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 206 MovieClip in Frame 154
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 209 MovieClip in Frame 154
on (press) { startDrag (this); } on (release) { stopDrag(); }
Instance of Symbol 212 MovieClip in Frame 154
on (press) { startDrag (this); } on (release) { stopDrag(); }
Frame 155
stopAllSounds();
Symbol 3 Button
on (release) { getURL ("http://www.albinoblacksheep.com"); }
Symbol 18 Button
on (release) { _root.play(); }
Symbol 19 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(loading_bar, _xscale , PercentLoaded); } else { gotoAndStop (3); }
Symbol 19 MovieClip Frame 2
gotoAndPlay (1);
Symbol 128 Button
on (release) { gotoAndStop (132); }
Symbol 134 Button
on (release) { gotoAndStop (133); }
Symbol 139 Button
on (release) { gotoAndStop (138); }
Symbol 143 Button
on (release) { gotoAndStop (142); }
Symbol 147 Button
on (release) { gotoAndStop (146); }
Symbol 151 Button
on (release) { gotoAndStop (153); }
Symbol 155 Button
on (release) { gotoAndStop (154); }
Symbol 157 Button
on (release) { gotoAndStop (155); }
Symbol 158 Button
on (release) { gotoAndStop (156); }
Symbol 160 Button
on (release) { gotoAndStop (157); }
Symbol 163 Button
on (release) { gotoAndStop (131); }
Symbol 166 Button
on (release) { gotoAndStop (132); }
Symbol 169 Button
on (release) { gotoAndStop (134); }
Symbol 174 Button
on (release) { gotoAndStop (133); }
Symbol 176 Button
on (release) { gotoAndStop (135); }
Symbol 183 Button
on (release) { gotoAndStop (134); }
Symbol 184 Button
on (release) { gotoAndStop (136); }
Symbol 192 Button
on (release) { gotoAndStop (135); }
Symbol 194 Button
on (release) { gotoAndStop (137); }
Symbol 199 Button
on (release) { gotoAndStop (136); }
Symbol 200 Button
on (release) { gotoAndStop (132); }
Symbol 215 Button
on (release) { gotoAndStop (139); }
Symbol 221 Button
on (release) { gotoAndStop (138); }
Symbol 223 Button
on (release) { gotoAndStop (140); }
Symbol 227 Button
on (release) { gotoAndStop (139); }
Symbol 229 Button
on (release) { gotoAndStop (141); }
Symbol 273 Button
on (release) { gotoAndStop (143); }
Symbol 277 Button
on (release) { gotoAndStop (142); }
Symbol 278 Button
on (release) { gotoAndStop (144); }
Symbol 287 Button
on (release) { gotoAndStop (143); }
Symbol 288 Button
on (release) { gotoAndStop (145); }
Symbol 296 Button
on (release) { function ansGen() { generate = random(5); ans = ["Ask again later", "Yes", "No", "Maybe", "Who cares"]; _root.textbox = ans[generate]; } ansGen(); }
Symbol 301 Button
on (release) { gotoAndStop (144); }
Symbol 303 Button
on (release) { gotoAndStop (147); }
Symbol 308 Button
on (release) { gotoAndStop (146); }
Symbol 309 Button
on (release) { gotoAndStop (148); }
Symbol 314 Button
on (release) { gotoAndStop (147); }
Symbol 315 Button
on (release) { gotoAndStop (149); }
Symbol 323 Button
on (release) { gotoAndStop (148); }
Symbol 324 Button
on (release) { gotoAndStop (150); }
Symbol 329 Button
on (release) { gotoAndStop (149); }
Symbol 330 Button
on (release) { gotoAndStop (151); }
Symbol 336 Button
on (release) { gotoAndStop (150); }
Symbol 337 Button
on (release) { gotoAndStop (152); }
Symbol 348 Button
on (release) { gotoAndStop (2); }
Symbol 349 Button
on (rollOver) { gotoAndStop (3); }
Symbol 352 Button
on (release) { gotoAndStop (4); }
Symbol 357 Button
on (release) { gotoAndStop (1); }
Symbol 359 MovieClip Frame 1
stop();
Symbol 359 MovieClip Frame 3
stop();
Symbol 360 Button
on (release) { gotoAndStop (151); }

Library Items

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

Instance Names

"loading_bar"Symbol 19 MovieClip Frame 1Symbol 6 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Dynamic Text Variables

textboxSymbol 297 EditableText""
textboxSymbol 374 EditableText""




http://swfchan.com/6/28967/info.shtml
Created: 20/5 -2019 04:02:58 Last modified: 20/5 -2019 04:02:58 Server time: 03/05 -2024 14:05:43