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

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

Mouse Maze Tutorial.swf

This is the info page for
Flash #72814

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


Text
Mouse Maze Tutorial

This tutorial is designed for people
wishing to create a mouse maze. It's
not basic, or advanced, it's just simple
enough for anybody to do.
You are welcome to copy any code or
ideas without crediting me.

OK

OK

mute

Play

You will learn how to create a maze,
with half decent graphics, moving
objects and custom cursors. If you find
any errors or have any ideas for me,
please PM me or comment.
Anyway, on to the tut.

BACK

BACK

BACK

Main Menu

The Maze

The Maze

The Buttons

The Buttons

The Mouse

The Mouse

The Hard Stuff

The Hard Stuff

Credits

Credits

The Maze

Right, the easy part. First we start by
drawing the maze. If it's your first
time, you might just want to use a
simple paintbrush/line tool mix. If you
are more advanced, try to draw a maze
with better graphics.

I'm going to draw a maze with good
graphics as an example. If you don't
want to, simply draw a maze using a
paintbrush. It's the same concept.

Basic

Advanced

Yeah, well...they look the same at the
moment, if you are drawing the simple
maze, follow the same instructions, but
click the skip button when it comes up.

Select ALL of your maze and convert
it to a symbol (F8). Select 'button'.

Modify>
Convert to
symbol>
Button

So now you have a basic maze outline,
which is now a button. It is VITAL
that it is a button for it to work. If
you are doing the basic maze, hit skip
now, otherwise hit OK.

Skip

Skip

To make the maze look better and
more interesting, select the maze and
apply an effect from the filters tab
(usually next to properties). I find that
bevel works well.

This is a bevelled maze. See
how it looks 3D and more
attractive. Don't like it,
okay...let's try a drop shadow.

How's that? Play about with
the settings and find one that
you like. When you're happy
with the maze it's time to add
the Buttons

The Buttons

Now it's time to add other buttons, like the
start, finish, obsticles and retry buttons. It
sounds complicated, but you'll get it.
By now you should have a maze, which is a
button. If not, hit menu. Otherwise hit OK.

Menu

First off, make 3 keyframes with your
maze in. To do that, click on the
that your maze is in and press F6
twice, now you should have 3 key
frames, all with your maze in. If not,
hit F6 until you have.

frame

Alternativley, you could right click the
frame and press "Insert keyframe"
twice. As long as you have --------
then you can hit ok.

3 keyframes

Select the 2nd keyframe, and click on
the maze. We are about to add
Action Scrip to it.

Okay, now it's time to add Action
Script to the maze. Don't worry, it's
simpler than it sounds. By now you
should all have a maze, that is a
button. If not, read the tutorial again
(click menu).

There are two ways to do this:
1. Click on the maze and press F9
2. Right click the maze and press
actions.
It doesn't matter which way you do it,
you will just get used to one way.

Once in the actions window, click on
the white box (where the actions go).
Copy and paste the following text into
the box (right click the text and press
select all, then right click and copy,
then in flash right click and paste).

Or Crtl+A / Ctrl+C / Ctrl+V

on (rollOver) {
prevFrame();
}

Remember, this is pasted in the maze,
in the second frame ONLY.

Well, now you can close the Action Script
box. Hope you got all of that. Basically,
what it means, is when the mous touches
the maze, it takes the movie back one
frame. That's why it's important for that
to be in the 2nd frame.

Now, we will make the start and finish
buttons. Draw a nice button shape, and
make it into a button (convert to symbol/
F8). If you don't know how to make good
looking button, check out a button
tutorial.

Okay, heres my button. Make one for
both start and finish.

Start

End

Now "Cut" the start button (rightclick and
cut). Select the 1st frame and "Paste" it.
Position it where you want the maze to
start. Then put this Action Script into it.
(Do it the same way as the maze, only
select the button, not the maze).

F9 incase you forgot.

on (rollOver) {
nextFrame();
}

Easy. Right?

Now do the same with the end/finish
button. Only this time, paste it into the
2rd frame and position it where you want
it to end. Then add this Action Script.

on (rollOver) {
nextFrame();
}

Easy. Please say it is.

So now we have a start and end button. It
wasn't all that hard.
So now we have an empty frame. We can
do alot with this, it could be a "next level"
button. I'll show you how.

To make a next level button. Simply make
a button (either a normal button or a text
button) and insert this script (which will
take you to the next frame/level. To learn
how to have another level, click the "A.a.l"
button:

A.a.L

on (rollOver) {
nextFrame();
}

Add that Action Scrip to the Next level
button.

The other option is to have a try again
button. Change the action script on the
maze in frame 2 to:

on (rollOver) {
gotoAndPlay(3);
}

Now make a next level button in frame 3
and give it the following Action Script:

on (rollOver) {
gotoAndPlay(1);
}

(1) represents the frame number of the
frame with the start button.

That's all for buttons. Click OK to take
you to the Cursors section, where you will
learn how to make a custom cursor. If you
want to look at something else, hit menu.

The Cursors

Now, this ActionScript is not my own. It
is taken from:

Mitchinator's Newgrounds Tutorial

Mitchinator's Newgrounds Tutorial

So I don't take credit for it.

First of all, make a new layer. (It's the
page with a plus on it on the bottom left
of the timeline.
In the new layer, draw a cursor, and
convert it to a Movie Clip (not a button).

It's the same as making a button, select it
all and hit F8. Only this time, click the
button saying Movie clip and hit ok.
Now add the following Action Script to it:
Once again, click the cursor and press F9

onClipEvent(load) { Mouse.hide(); } onClipEvent(enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }

You should have your own custom
cursor...like the one on this page. Check
out other cursor tutorials to learn how to
make animated cursors. If you want the
cursor to show up, there has to be a frame
in the cursor layor, for every frame in the
origional layer.

To do that, finish your maze game and
make sure you're on the cursor layer. Then
just press F5 until there are as many
cursor frames as maze frames. If you don't
get that then dont worry, just leave the
cursor out. That's it for cursors, next is
hard stuff or click example to see what
you could've achieved by now.

Example

Example

The Hard Stuff

Now we will move on to the moving
obsticles...or as i like to call them... "pieces
of ****". Basically it's just like making a
maze, within a maze. If you want a
sliding wall, draw a wall and then convert
it to a button, in the same layer as the
maze.

Now, click the Button, and make it a
movie clip. Now you have a Button inside
of a Movie clip. Double click the movie
clip and then make two key frames, one
at around 10, and one at 20. Then in
frame 10, move the wall the direction you
want it to move. Then tween frames 1-10
and 10-20. If you don't know how, find a
tutorial.

You should have this (or whatever you
made):

My framerate is high, so it moves fast.

Still inside the movie clip, add this action
script to the button.

on (rollOver) {_root.gotoAndStop("1");}

Put the frame number of the frame with
the start button between the "'s.Now,
when the mouse touches the wall, it will
take the player back to the start. Wow,
that was a little confuzing. But moving
walls have HUGE potential. Check out
some examples.

Making A New Level

Ok this is pretty simple. If you are using
3 frames (3rd being a next level button)
simply make another maze in a new frame
(frame 4) and repeat the whole process
again. You can copy the buttons from the
other frames to make life easier.

If you are using a "try again" frame for
frame 3, do the same, only give the button
a different frame number in the
actionscript (1 would be changed to 4).
That is a little bit more complicated.

Credits

Made by: Adam (Saint-Anarchy)

Script: From own knowledge
Mouse script:

13/08/07

Level Complete

Once in the actions window, click on
the white box (where the actions go).
Copy and paste this text into the box
(right click the text and press select
all, then right click and copy, then in
flash right click and paste).

ActionScript [AS1/AS2]

Instance of Symbol 78 MovieClip in Frame 1
onClipEvent (load) { Mouse.hide(); } onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }
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 13
stop();
Frame 14
stop();
Frame 15
stop();
Frame 16
stop();
Frame 17
stop();
Frame 18
stop();
Frame 19
stop();
Frame 20
stop();
Frame 21
stop();
Frame 22
stop();
Frame 23
stop();
Frame 24
stop();
Frame 25
stop();
Frame 26
stop();
Frame 27
stop();
Frame 28
stop();
Frame 29
stop();
Frame 30
stop();
Frame 31
stop();
Frame 32
stop();
Frame 33
stop();
Frame 34
stop();
Frame 35
stop();
Frame 36
stop();
Frame 37
stop();
Frame 38
stop();
Frame 39
stop();
Frame 40
stop();
Frame 41
stop();
Frame 42
stop();
Frame 43
stop();
Frame 44
stop();
Frame 45
stop();
Frame 46
stop();
Frame 47
stop();
Frame 48
stop();
Frame 49
stop();
Frame 50
stop();
Frame 51
stop();
Frame 52
stop();
Frame 53
stop();
Symbol 47 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 49 MovieClip Frame 40
stop();
Symbol 75 Button
on (release) { _root.play(); }
Symbol 76 MovieClip Frame 1
function onEnterFrame() { if (!loaded) { var _local3 = _root.getBytesLoaded() / _root.getBytesTotal(); if (_local3 >= 1) { play(); bar._x = initX; loaded = true; } else { bar._x = initX + ((_local3 - 1) * bar._width); } } var _local4 = getTimer() - time; timeAccum = timeAccum + _local4; while (timeAccum >= FRAME_TIME) { var _local2 = 0; while (_local2 < timeClips.length) { if (timeClips[_local2]._currentframe < timeClips[_local2]._totalframes) { timeClips[_local2].nextFrame(); } else { timeClips[_local2].gotoAndStop(1); } _local2++; } if (loaded && (_currentframe < _totalframes)) { nextFrame(); } timeAccum = timeAccum - FRAME_TIME; } time = time + _local4; } stop(); _root.stop(); var initX = bar._x; var time = getTimer(); var FRAME_TIME = 33.3333333333333; var timeAccum = 0; var loaded = false; timeClips = [bargfx, tank.mc0, tank.mc1, tank.mc2, tank.mc3, tank.mc4, tank.mc4.mc0, tank.mc4.mc1, tank.mc4.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc0.mc2, tank.mc4.mc0.mc0.mc0.mc3, tank.mc4.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc2, tank.mc5.mc0]; var i = 0; while (i < timeClips.length) { timeClips[i].stop(); i++; }
Symbol 76 MovieClip Frame 51
Symbol 90 Button
on (release) { nextFrame(); }
Symbol 101 Button
on (release) { stopAllSounds(); }
Symbol 103 Button
on (release) { stopAllSounds(); bgmusic = new Sound(this); bgmusic.attachSound("Song1"); bgmusic.start(0, 9999); }
Symbol 108 Button
on (release) { prevFrame(); }
Symbol 112 Button
on (release) { nextFrame(); }
Symbol 115 Button
on (release) { gotoAndPlay (14); }
Symbol 118 Button
on (release) { gotoAndPlay (36); }
Symbol 121 Button
on (release) { gotoAndPlay (42); }
Symbol 124 Button
on (release) { gotoAndPlay (50); }
Symbol 139 Button
on (release) { gotoAndPlay (14); }
Symbol 149 Button
on (release) { gotoAndPlay (4); }
Symbol 189 Button
on (release) { gotoAndPlay (48); }
Symbol 198 Button
on (release) { gotoAndPlay (4); }
Symbol 203 Button
on (release) { getURL ("http://www.newgrounds.com/portal/view/244436", "_blank"); }
Symbol 209 Button
on (release) { nextFrame(); mouse.show(); }
Symbol 214 Button
on (release) { gotoAndPlay (51); }
Symbol 245 Button
on (release) { gotoAndStop (4); }
Symbol 253 Button
on (rollOver) { gotoAndPlay (52); }
Symbol 255 Button
on (rollOver) { gotoAndPlay (53); }
Symbol 256 Button
on (rollOver) { gotoAndPlay (51); }
Symbol 260 Button
on (rollOver) { gotoAndPlay (54); }

Library Items

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

Instance Names

"bar"Symbol 76 MovieClip Frame 1Symbol 6 MovieClip
"bargfx"Symbol 76 MovieClip Frame 1Symbol 9 MovieClip
"tank"Symbol 76 MovieClip Frame 1Symbol 23 MovieClip
"bargfx"Symbol 76 MovieClip Frame 2Symbol 9 MovieClip
"bargfx"Symbol 76 MovieClip Frame 20Symbol 9 MovieClip

Special Tags

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

Labels

"LOAD"Symbol 76 MovieClip Frame 1
"COMPLETE_STOP"Symbol 76 MovieClip Frame 2




http://swfchan.com/15/72814/info.shtml
Created: 8/4 -2019 13:45:55 Last modified: 8/4 -2019 13:45:55 Server time: 19/05 -2024 15:36:42