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

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

=Simple Button Tutorial=.swf

This is the info page for
Flash #77459

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


Text
This tutorial will
teach you about:
Buttons.

Yes. Buttons.

<p align="justify"><font face="BernhardMod BT" size="21" color="#003399" letterSpacing="0.000000" kerning="1"><b>By:</b></font></p><p align="justify"><font face="BernhardMod BT" size="21" color="#0000ff" letterSpacing="0.000000" kerning="1"><a href="http://phantox.newgrounds.com"><b>Phantox</b></a></font></p>

Note: This tutorial is for begginers.

Index

What are buttons

Making a button

Action script

Credits

<<<<<< I bet no one will click on that

Making buttons do stuff when scrolled upon

Giving actions to buttons

In my opinion, buttons are the thing almost (If not every) flash has in it.
Without it, a flash would be nothing. Why? Because a button is what a
person uses to do certain things in flash. (Such as start a movie or navigate
through frames.
Buttons come in different shapes and sizes. Almost every thing can be
made a button. Here are some examples: (They are click-able but don't do
anything... Except the last one)

1

LAWL

2

Let's start with something simple. Click on the button next to the step for
a screenshot.
Firstly, select a drawing tool.
Secondly, select the colors you want the button to be. The paint bucket is
the inside color and the pencil is the outline.
Thirdly, draw a button. I prefer drawing it outside of the frame so it
doesn't get caught up with anything.
Fourthly, highlight the button and right click on it. Look for something
that says "Convert to Symbol..." and click on it

3

Making a button (2)

Fifthly, select the "button" option and hit OK. It doesn't matter what
name you give it

Alright you just made a button! Well that was only the easy part. Now out
to action scripts...

4

Alright you will now learn how to give actions to buttons! (Such as going
to a different frame or make it turn off/on sound)

Giving buttons actions is called action scripting. This is where you give a
button scripts on what to do.
(A good example would be a manager giving orders to a worker.)

Lets start with something simple: Make a button go to the next frame

To do this, right click on the button you just made. A lot of new things
should have popped up. Click on the one that says "Actions" (Make sure
you have only the button selected and nothing else!)

Now a whole thing to write should pop up. Copy this code and paste
it there

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;nextFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Note: You can also use (press) instead of (release)
to make the effect happen as soon as you press
the button

5

Giving actions to buttons (2)

After you paste the code, click on the small x.
As you can see, we gave the button an order in a computerish language.
We said to it something like: "Hey you! When I click on you and
release, you're going to take me to the next frame!"

Now want to make a button go to a certain frame and play though the
next frames when clicked on? Easy. Type in this code into the button
we just made or a new one.

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;gotoAndPlay(#);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Replace the # with the number the desired frame is in

Next we will learn how to make a button play sounds when it's pressed.

<p align="justify"><font face="BernhardMod BT" size="19" color="#003399" letterSpacing="0.000000" kerning="1"><b>Note that this won&apos;t play through the frames if they have stop action on them.</b></font></p>

6

Giving actions to buttons (3)

Alright this part could be a bit confusing so pay attention. Now I'm going
to teach you how to add sound to a button and make it play it when
pressed.

First, import a music file. This can be done by going to
File>Import>Import to stage or just press Ctrl+R for the shortcut.
Look for the file and open it.

Now make a button. I don't need to explain that again right?

After you've drawn the button and converted it, double click it. The
frames at the top should have changed to 4 saying:
UP  OVER  DOWN  HIT
Go over to the DOWN one and add a keyframe to it and highlight it.

Now head over to the library and look for the audio you imported. Drag it
up to the where you are drawing your buttons.

7

Giving actions to buttons (4)

Squigly lines should have apeared on the DOWN keyframe. Exit the
button thing by double clicking somewhere outside of the button area or
the "Scene 1" thing.

Press ctrl+Enter to see if your sound works!

Now making a button stop sounds is a lot easier than making a button
play them. First, make a button and convert it.

Second, head over to the actions and add this piece of actionscript to it.

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (press) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;stop();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;stopAllSounds();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

That will stop all sounds as soon as it's pressed.

8

This part is easier than it sounds. First, make a random animation.
Lets take the pic of the pistol I made in the first few frames.

If it's to hard to draw make something simple. Like a stick man.

Convert it to a button and double click on it. (Like we did to add audio)

Add a keyframe on over and draw the pistol again. (You can also just press
"Insert keyframe" and the pistol will be re-drawn. Add a small line. That
will be the laser sight. You can add a sound to it of a loading clip if you
want.

Now make another keyframe on the DOWN frame and turn the pistol a
few degrees and add some sparks to it to make it seem like someone fired
it. Add a sound of a "BANG" if you want.

This will show when the mouse is over the button

9

Action Script

Here's a list of AS that may come usefull.

Make a button go to the next frame

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;nextFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (press) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;nextFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

or

Make a button go to the previous frame

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;prevFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (press) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;prevFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Make a button go to a certain frame
and play it (wont play if it has stop action)
replace the # with the desired frame number

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;gotoAndPlay(#);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;gotoAndPlay(#);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Make a button stop playing
all sounds

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;stop();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;stopAllSounds();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;stop();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;stopAllSounds();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Make a button go to a certain frame
and stop at it

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;gotoAndStop(#);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (press) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;gotoAndStop(#);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

or

10

Action Script (2)

Make a button go to a URL
the "blank" is for the website to open in a different window

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (release) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;getURL (&quot;www.-------.com&quot;, &quot;blank&quot;</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (press) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;getURL (&quot;www.-------.com&quot;, &quot;blank&quot;</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

Make a button do an action
when a key is pressed

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (keyPress &quot;&lt;Right&gt;&quot;) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;nextFrame();</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>on (keyPress &quot;&lt;Down&gt;&quot;) {</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b> &nbsp;&nbsp;&nbsp;&nbsp;gotoAndPlay(4);</b></font></p><p align="justify"><font face="BernhardMod BT" size="14" color="#003399" letterSpacing="0.000000" kerning="1"><b>}</b></font></p>

<p align="justify"><font face="BernhardMod BT" size="21" color="#003399" letterSpacing="0.000000" kerning="1"><b>Made by:</b></font></p><p align="justify"><font face="BernhardMod BT" size="21" color="#0000ff" letterSpacing="0.000000" kerning="1"><a href="http://phantox.newgrounds.com"><b>Phantox</b></a></font></p>

Music from:
Golden Sun 2: The Lost Age
(A game for the GBA)

If you have any other questions about flash, you can ask in a review, PM, or
comment in my profile.
(^NSFW)

If you think it's good, please recommend it for the
flash tutorial collection!

That's it!

ActionScript [AS1/AS2]

Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Frame 7
stop();
Frame 8
stop();
Frame 9
stop();
Frame 10
stop();
Frame 11
stop();
Frame 12
stop();
Frame 27
stop();
Symbol 38 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 47 Button
on (release) { _root.play(); }
Symbol 49 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 49 MovieClip Frame 2
gotoAndPlay (1);
Symbol 69 Button
on (release) { nextFrame(); }
Symbol 70 Button
on (release) { gotoAndStop (4); }
Symbol 71 Button
on (release) { gotoAndStop (6); }
Symbol 72 Button
on (release) { gotoAndStop (10); }
Symbol 73 Button
on (release) { gotoAndStop (11); }
Symbol 74 Button
on (release) { gotoAndStop (27); }
Symbol 79 Button
on (press) { stopAllSounds(); }
Symbol 98 Button
on (release) { nextFrame(); }
Symbol 99 Button
on (release) { prevFrame(); } on (press) { stopAllSounds(); }
Symbol 103 Button
on (release) { gotoAndStop (13); }
Symbol 104 Button
on (release) { gotoAndStop (14); }
Symbol 105 Button
on (release) { gotoAndStop (15); }
Symbol 106 Button
on (release) { gotoAndStop (16); }
Symbol 107 Button
on (release) { prevFrame(); }
Symbol 111 Button
on (release) { gotoAndStop (17); }
Symbol 118 Button
on (release) { gotoAndStop (18); }
Symbol 121 Button
on (release) { gotoAndStop (19); }
Symbol 129 Button
on (release) { gotoAndStop (20); }
Symbol 138 Button
on (release) { gotoAndStop (21); }
Symbol 139 Button
on (release) { gotoAndStop (22); }
Symbol 141 Button
on (release) { gotoAndStop (23); }
Symbol 149 Button
on (release) { gotoAndStop (24); }
Symbol 161 Button
on (release) { gotoAndStop (25); }
Symbol 162 Button
on (release) { gotoAndStop (26); }
Symbol 192 Button
on (release) { gotoAndStop (27); }
Symbol 195 Button
on (release) { gotoAndStop (4); }
Symbol 204 Button
on (release) { gotoAndStop (5); }
Symbol 207 Button
on (release) { gotoAndStop (6); }
Symbol 212 Button
on (release) { gotoAndStop (7); }
Symbol 215 Button
on (release) { gotoAndStop (8); }
Symbol 222 Button
on (release) { gotoAndStop (9); }
Symbol 225 Button
on (release) { gotoAndStop (10); }
Symbol 230 Button
on (release) { gotoAndPlay (2); } on (press) { stopAllSounds(); }

Library Items

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

Instance Names

"bar"Symbol 49 MovieClip Frame 1Symbol 3 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 131 bytes "..$1$se$zcGCN/PHblCDUnqe7u8ph0."

Labels

"loaded"Symbol 49 MovieClip Frame 3




http://swfchan.com/16/77459/info.shtml
Created: 4/4 -2019 01:12:01 Last modified: 4/4 -2019 01:12:01 Server time: 15/05 -2024 07:02:50