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

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

The Ultimate Audio Tut.swf

This is the info page for
Flash #61474

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


Text
The Ultimate
Audio Flash
Tutorial

The

ULTIMATE

Audio Flash

Tutorial!

The

The

Ultimate

Audio Flash

Tutorial

Start!

ON

OFF

X

X

X

2

2

2

1

1

Starting Out

on(release){
nextFrame();
}

on(release){
prevFrame();
}

Help

?

Ok as all tutorials out there they use
symbols like movieclips and buttons
so if you dont know any single one
of them click the help button if you
already know click next and also the
help button is always there it doesnt
go away because you might forget
how to make a symbol

The Help Section

Wait! you must be wondering why the
help button disappeared because
you're already in the help section!
now click on which would you want
to learn

Click there to go baCk

making a:

Button

Movieclip

Back

Movieclips

When you press ctrl+f8 select movieclip then ok then
you will be taken into inside the movieclip you could
animate inside it also. Movieclips are mostly used in
games in making walking animations for your
character and it is used in putting AS codes like in
moving, lifebars etc.

This
appears
when you
press
ctrl+f8

Buttons are fairly easy to make so to make
them press ctrl+f8 then you will see this pop
out

Select
Button

Then press OK

Then look at the upper side
you will see something like this

Up - The look of your button without
mouse detection

Over - When your mouse is over the
button

Down - When you click your button

Then uou can start making your butons
and also you can also make movieclips in
the over and down like this

NONE

look And rollover and click my
button

Ok now we're gonna go back to scene 1 to
insert actions to your buttons click scene 1
on top

Then press f9 in your keyboard then this
will pop out (the action pannel)

Press your left and
right arrowkeys to
scroll the picture

Then click your button once inside the actions pannel
insert the following actions you like and  then again the
codes can be moved from left to right using your arrow
keys Note* pls copy paste it because you might do wrong
capitalazations when you just type it

on(release){
play();
}

on(release)  {
gotoAndPlay(frame#)
}

on(release){
prevFrame();
}

on(release){
nextFrame();
}

on(release){
nextScene();
}

on(release){
stop();
}

on(release)  {
gotoAndstop(frame#)
}

Stops your
animation

Plays your
animation

GOes to the frame
you want and plays it

GOes to the frame you
want and stops it

Goes to the previous
frame

Goes to the next
frame

Goes to the
next scene

Ok right when you saw the code yyou can see
on(release) bla bla bla..... you know you can
change on(release) you know try these

on (press)  on(rollOver) on(rollOut)
on(relaseOutside)

Just try it 1 by one then thats all
I know about buttons now hit that
back button

Start of the tutorial

Ok Now to start make
a new flash document

After click
this pops in

I - Inserting Sounds

Actually there are 2 ways of inserting sound 1st is the
"Frame way" and the "actionscript way" but 1st let's
start with the frame way but as all methods 1st we will
need sound so import your sound press ctrl+r or
"File+Import+import to stage then" pick your sound then
press ok

press up and down
arrow keys to scroll
the picture

Click the
highlighted one

Ok so we're gonna start with the frame
way Now click at the frame you want to
insert your sound then look at the
bottom screen and that will appear

Now select your
sound from a drop-
down list like that

Make sure that the sync is stream

Once selected look at the top of your frame
there's a line or something like a scribbble
to see your sound there pright click insert
frame somewhere about the 100th frame then
you will see your sound (press enter to hear
it)

The sound

Ok now that you know the frame way let's
move to the Actionscript way and also the
frame way is way different thn the
actionscript way because you can control
it with a lot of ways so to start with the
actionscript way 1st we're gonna meet with
the word we call "linkage" without it the
actionscript way would not work to do it
in the library (right side) right click your
sound then select linkage then this wll pop
out (next Page)

stopAllS
ounds();
_root.mus
= new
Sound();
_root.mus
.attachSo
und("jaye")
;
_root.mus
.start(0,20
000);
_root.mus
.volume =
70;

Then do everything in the picture I mean
everything as in all

stopAllSounds();
_root.mus = new Sound();
_root.mus.attachSound("sound");
_root.mus.start(0,20000);
_root.mus.volume = 70;

Now for the actionscript

Ok the 1st line of the
code stops all
sounds that are
playing you can take
them out if you want

The seconds before the music start
Loops (dont make it to long)

Volume When the sound starts

Then you're probably
thinking how to turn it on
and of right well that's what
I am gonna teach you in the
next topic

II - Simple On/Off

Well here it is On/Off of sounds
tutorial so to start 1st make to
buttons one saying it to turn on
and one saying it to turn off
the sound and also dont take
out the linkage of your sound

Well here are the actions for
your on button

on(press){
stopAllSounds();
_root.mus = new Sound();
_root.mus.attachSound("sound");
_root.mus.start(0,20000);
_root.mus.volume = 90;
}

Now does'nt that code look
familliar? well it's actually
the code before  just
actually added an
on(release){ and a curly
thing like this } at the end
simple isnt it? (you can still
make the changes like
before)

and the actions for your off
button

on(press){
stopAllSounds();
}

And now you want to make
multiple music yes? well then
continue

III- Multiple Sounds

Ok making Multiple sounds, it's super
duper extra easy so ok import
just about 2 more sound so that 3
all in all then give them linkage as
the same as the last one but to
your 1st sound is sound1 then sound2
then sound3

Then make 4 buttons one that
saying to turn off the music then 1
button to each of your sound then
give these actions to the one
saying Off

on(press){
stopAllSounds();
}

Then these actions for the button
for sound1

on(press){
stopAllSounds();
_root.mus = new Sound();
_root.mus.attachSound("sound1");
_root.mus.start(0,20000);
_root.mus.volume = 90;
}

Just put that also for
the other 2 buttons but
change sound1 to the
linkage name for the
coressponding button

You can still make
the changes like
before

Now you probably thinking (again
:P) how could you actually control
the volume, how to lessen it or
decrease it right? then the next
topic will do!

IV - Volume Control

Ok to start 1st make 2 buttons
one saying to decrease and
another one saying to increase
like that one below

After you've made it give these
actions to the button that's
saying to increase

on (press)
{
_root.mus.setVolume(_root.mus.getVolume() + 5);
}

Ok now you can change 5 to whats the
value the volume gets Increased when your
button is pressed

And Finally this one to decrease

on (press)
{
_root.mus.setVolume(_root.mus.getVolume() - 5);
}

And again you can change 5 to whats the value
the volume gets Increased when your button is
pressed you could also change the on(release){
thing you know you could change it to on(rollOver){
so that when you just rollover it the volume will
change

And thats it for
volume control!

The section where you press the
big X button up there

Hey guys thanks for viewing this tutorial
I really mean it also pls rate and review
PLEASE review so that I would'nt get
bored I'll try as much as possible to
reply unless you send some worthless
reviews

-Jaye19

Anyone up for this to a collection :)

When you press ctrl+f8 select movieclip then ok then
you will be taken inside the movieclip you could animate
inside it also. Movieclips are mostly used in games in
making walking animations for your character and it
is used in putting A.S. codes like in moving, lifebars etc.

look and rollover and click my
button

Ok right when you saw the code you can see
on(release) bla bla bla..... you know you can
change on(release) you know try these

on (press)  on(rollOver) on(rollOut)
on(relaseOutside)

Now please which section we're
you in before you clicked help

Inserting Sounds
Simple on/off
Multiple sounds
volume control

ActionScript [AS1/AS2]

Frame 1
function itemHandler1(obj, item) { } totalBytes = Math.round(getBytesTotal() / 1024); loadedBytes = Math.round(getBytesLoaded() / 1024); percentDone = Math.round((loadedBytes / totalBytes) * 100); if (_root._framesloaded >= _root._totalframes) { gotoAndPlay ("start"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("It's Loading! It's Loading!", itemHandler1); item1.enabled = true; myMenu.customItems.push(item1, item1); _root.menu = myMenu; Stage.showMenu = false;
Instance of Symbol 8 MovieClip in Frame 1
onClipEvent (enterFrame) { gotoAndPlay(_root.percentDone); }
Frame 2
gotoAndPlay (1);
Frame 3
stop();
Instance of Symbol 16 MovieClip in Frame 3
onClipEvent (enterFrame) { this.play(); }
Instance of Symbol 35 MovieClip in Frame 106
onClipEvent (enterFrame) { this.stop(); }
Frame 226
stop();
Frame 287
stop();
Frame 288
stop();
Frame 289
stop();
Frame 290
stop();
Frame 291
stop();
Frame 292
stop();
Frame 293
stop();
Frame 294
stop();
Instance of Symbol 158 MovieClip "player" in Frame 294
/* no clip actions */
Instance of Symbol 160 MovieClip in Frame 294
/* no clip actions */
Instance of Symbol 160 MovieClip in Frame 294
/* no clip actions */
Frame 295
stop();
Instance of Symbol 177 MovieClip "player" in Frame 295
onClipEvent (enterFrame) { if (Key.isDown(39)) { this._x = _x - 10; } } onClipEvent (enterFrame) { if (Key.isDown(37)) { this._x = _x + 10; } }
Frame 296
stop();
Frame 297
stop();
Frame 298
stop();
Instance of Symbol 203 MovieClip in Frame 298
onClipEvent (load) { speed = 5; } onClipEvent (enterFrame) { if (Key.isDown(38)) { this._y = this._y - speed; this.gotoAndStop(2); } if (Key.isDown(40)) { this._y = this._y + speed; this.gotoAndStop(1); } }
Frame 299
stop();
Frame 300
stop();
Frame 301
stop();
Frame 302
stop();
Frame 303
stop();
Frame 304
stop();
Frame 305
stop();
Frame 306
stop();
Frame 307
stop();
Frame 308
stop();
Frame 309
stop();
Frame 310
stop();
Frame 311
stop();
Frame 312
stop();
Frame 313
stop();
Frame 314
stop();
Frame 315
stop();
Frame 316
stop();
Frame 317
stop();
Frame 318
stop();
Frame 319
stop();
Frame 320
stop();
Frame 321
stop();
Frame 322
stop();
Frame 323
stop();
Instance of Symbol 158 MovieClip "player" in Frame 323
/* no clip actions */
Instance of Symbol 160 MovieClip in Frame 323
/* no clip actions */
Instance of Symbol 160 MovieClip in Frame 323
/* no clip actions */
Frame 324
stop();
Instance of Symbol 177 MovieClip "player" in Frame 324
onClipEvent (enterFrame) { if (Key.isDown(39)) { this._x = _x - 10; } } onClipEvent (enterFrame) { if (Key.isDown(37)) { this._x = _x + 10; } }
Frame 325
stop();
Frame 326
stop();
Symbol 16 MovieClip Frame 51
stop(); _root.play();
Symbol 42 MovieClip Frame 150
stop();
Symbol 46 Button
on (release) { _root.play(); }
Symbol 47 MovieClip Frame 25
stop();
Symbol 54 Button
on (release) { prevFrame(); } on (press) { stopAllSounds(); _root.mus = new Sound(); _root.mus.attachSound("jaye"); _root.mus.start(1, 20000); _root.mus.volume = 70; }
Symbol 55 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 2
stop();
Symbol 57 Button
on (press) { _root.mus.setVolume(_root.mus.getVolume() + 5); }
Symbol 59 Button
on (press) { _root.mus.setVolume(_root.mus.getVolume() - 5); }
Symbol 61 Button
on (release) { stopAllSounds(); } on (release) { nextFrame(); }
Symbol 68 Button
on (press) { stopAllSounds(); }
Symbol 72 Button
on (press) { stopAllSounds(); _root.mus = new Sound(); _root.mus.attachSound("jaye2"); _root.mus.start(0, 2000); _root.mus.volume = 90; }
Symbol 75 Button
on (press) { stopAllSounds(); _root.mus = new Sound(); _root.mus.attachSound("jaye"); _root.mus.start(0, 20000); _root.mus.volume = 90; }
Symbol 76 Button
on (press) { stopAllSounds(); _root.mus = new Sound(); _root.mus.attachSound("jaye2"); _root.mus.start(0, 2000); _root.mus.volume = 70; }
Symbol 77 MovieClip Frame 1
play();
Symbol 77 MovieClip Frame 46
stop();
Symbol 78 MovieClip Frame 51
stop();
Instance of Symbol 77 MovieClip in Symbol 78 MovieClip Frame 51
onClipEvent (load) { this.play(); }
Symbol 96 Button
on (release) { gotoAndStop (297); }
Symbol 97 Button
on (release) { gotoAndStop (288); }
Symbol 107 Button
on (release) { gotoAndStop (290); }
Symbol 109 Button
on (release) { nextFrame(); }
Symbol 112 Button
on (release) { _root.gotoAndStop(287); }
Symbol 113 MovieClip Frame 60
stop();
Symbol 123 Button
on (release) { nextFrame(); }
Symbol 128 Button
on (release) { prevFrame(); }
Instance of Symbol 157 MovieClip "player" in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (Key.isDown(39)) { this._x = _x - 10; } } onClipEvent (enterFrame) { if (Key.isDown(37)) { this._x = _x + 10; } }
Symbol 183 Button
on (release) { nextFrame(); }
Symbol 184 Button
on (release) { gotoAndStop (287); }
Symbol 185 Button
on (release) { gotoAndStop ("jaye"); }
Symbol 195 Button
on (release) { gotoAndStop (317); }
Symbol 260 MovieClip Frame 45
stop();
Symbol 261 Button
on (release) { gotoAndStop (319); }
Symbol 262 Button
on (release) { _root.gotoAndStop(325); }
Symbol 263 Button
on (release) { _root.gotoAndStop(326); }
Symbol 264 MovieClip Frame 60
stop();
Symbol 274 Button
on (release) { gotoAndStop ("sounds"); }
Symbol 275 Button
on (release) { gotoAndStop ("sounds2"); }
Symbol 276 Button
on (release) { gotoAndStop ("sounds3"); }
Symbol 277 Button
on (release) { gotoAndStop ("sounds4"); }

Library Items

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

Instance Names

"player"Frame 294Symbol 158 MovieClip
"player"Frame 295Symbol 177 MovieClip
"player"Frame 323Symbol 158 MovieClip
"player"Frame 324Symbol 177 MovieClip
"player"Symbol 158 MovieClip Frame 1Symbol 157 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "jaye"
ExportAssets (56)Timeline Frame 1Symbol 2 as "jaye2"

Labels

"start"Frame 3
"sounds"Frame 298
"sounds2"Frame 305
"sounds3"Frame 308
"sounds4"Frame 312
"jaye"Frame 317




http://swfchan.com/13/61474/info.shtml
Created: 15/4 -2019 13:39:44 Last modified: 15/4 -2019 13:39:44 Server time: 22/05 -2024 01:34:32