STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229456 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5148 |
This is the info page for Flash #70578 |
LOADI NG... |
P L AY |
Mach |
1 |
Productions |
A Tutorial By |
A Tutorial By |
A Tutorial By |
A Tutorial By |
A Tutorial By |
A Tutorial By |
A Tutorial By |
A Tutorial By |
6-in-1 Tutorials |
6-in-1 Tutorials |
6-in-1 Tutorials |
6-in-1 Tutorials |
6-in-1 Tutorials |
6-in-1 Tutorials |
Hello again and welcome back! You should be learning some of the following in this tutorial that I have prepared for you. |
Motion Guides |
Motion Guides |
Car Controls |
Car Controls |
Digital Clocks |
Digital Clocks |
URL buttons |
URL buttons |
Cursor Follower |
Cursor Follower |
Custom Right Click Menu's |
Custom Right Click Menu's |
Motion Guides |
Ok so you want to make something move with out using a motion tween but you dont know how? Problem solved! Use a motion guide and I'm gonna tell you how! Just hit the next button. |
Open flash, create a new document then using the tool to draw a circle on the stage.Then click this button to get started on the motion guide.(Be sure to make the circle you drew a movie clip or this wont work ) |
Ok now your timeline should look something like this Now select the frames on both layers so it looks like this |
Now hit F5 to add about 10 frames so it looks like this Now put a keyframe at the end of the 10 frames It should have11 frames and look like this |
Now that you have 11 frames its time to draw the guide so on your guide layer go to the first frame and draw your guide |
Finsh |
Start |
Ok Remeber the object you made ? well it now has a use ! Click on layer 1 on the first frame and put your object at your starting point |
Then on the last frame of the first layer move your object to the finshing point |
Now put a tween on these frames |
And Your Done! |
Menu |
Car Controls |
Ok here I'm gonna show you how to make a car that you can play around with or take it to the next level and make a simple game with it. Click below to see what I'm talking about |
CLICK ME |
Hopefully you took a look at what I'm talking about so you can see what I'll be helping you create....Time to get started first off you need to open up flash and make a new document. Now that flash is open draw your car I'll use this one. |
Ok highlight your car and hit F8 to make it a movie clip |
Now that your car is a movie clip we can add the action script to it so go to the actions panel and paste this script |
onClipEvent (load) { speed = 5; } onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed)*2; _root.mph -= _root.mph%1; if (_root.mph<1) { _root.mph = 1; } if (Key.isDown(Key.UP)) { speed += 2; } if (Key.isDown(Key.DOWN)) { speed -= 1; } if (Math.abs(speed)>20) { speed *= .7; } if (Key.isDown(Key.LEFT)) { _rotation -= 14; } if (Key.isDown(Key.RIGHT)) { _rotation += 14; } speed *= .98; x = //this script created by bassfisher aka OneEyedYak Math.sin(_rotation*(Math.PI/180))*speed; y = Math.cos(_rotation*(Math.PI/180))*speed*-1; if (!_root.boundary.hitTest(_x+x, _y+y, true)) { _x += x; _y += y; } else { speed *= -.6; } } onClipEvent (enterFrame) { if (this._x > 600) { this._x = -50; } } onClipEvent (enterFrame) { if (this._y > 450) { this._y = -50; } } onClipEvent (enterFrame) { if (this._x < -50) { this._x = 600; } } onClipEvent (enterFrame) { if (this._y < -50) { this._y = 450; } } |
Test it out! Well if you did, it has the controls of tank thats becuase the little is in the middle of the car to fix this double-click on the car to go in its own timeline highlight the whole car and drag it to where the little sybol is just behind the front or rear axel would be both have car-like steering |
It's your choice which to use but I recomend placing it just the in front of the rear axel! |
cs |
Want to learn how to make a digital clock like the one below? Hit the next button then! |
Digital Clocks |
First open flash and create a new document then make to layers and add two frames like so |
Digital Clocks |
Now that you have two frames with two layers name the first layer "Background" and the second layer "Text" |
Digital Clocks |
Before |
After |
On the background layer use the tool to draw a square or rectangle as shown below. |
On the Text layer use the tool to create a dynamic text box over the length of the square like so. Type a few letters in the dynamic text box so that the script has somthing to work with, Be sure to make it the appropriate color, font and size you want for the clock. |
clocktxt |
Ok now look right here see this ? Well the script has to know what text to change in order for the clock to work, so name it "clock_txt" |
clocktxt |
In order to see the instance name you have to be typing in the dynamic text box. |
Time For the ActionScript but the script doesn't actually go on the text, or the background instead it goes on the text layer So on the text layer click on first frame then click the actions panel |
clocktxt |
copy and paste the script below onto the actions panel for the first frame on the text layer |
time=new Date(); var seconds = time.getSeconds() var minutes = time.getMinutes() var hours = time.getHours() if (hours<12) { ampm = "AM"; } else{ ampm = "PM"; } while(hours >12){ hours = hours - 12; } if(hours<10){ hours = "0" + hours; } if(minutes<10){ minutes = "0" + minutes; }if(seconds<10){ seconds = "0" + seconds; } clock_txt.text = hours + ":" + minutes + ":" + seconds +" "+ ampm; |
If done correctly the timeline will look like this and your clock will work! |
clocktxt |
If your going to use this clock in a flash you'll hafta make a movie clip first so that the script will be able work with the text if not your clock will just be a dynamic text box and a clock background.Once there is a movie clip simply follow the steps in the previous section of the tutorial to finsh the clock |
Digital Clocks a little tip |
Custom Right Click Menus |
Right-click please see were it says "Main menu"? Well guess What?...... If you click it you'll go back to the main menu just like it says. Wanna put something like this into your flash? Hit the Next button ! |
Ok just select a flash that you have already made or you can open flash and make a new document if you want to get started. |
Now you can do one of two things |
1. You can have a link to a website |
1. You can have a link to a website |
1. You can have a link to a website |
2. You can have a link to a frame in your flash |
2. You can have a link to a frame in your flash |
2. You can have a link to a frame in your flash |
Right-click again...... See that a link to Newgrounds! I'm gonna tell you how to do that. Click it if you want. Now that your ready, make a new layer and put this script in the actions panel of the frame that you want it to be in your movie/game. |
var myMenu=new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("YOUR TEXT", itemHandler1)); function itemHandler1(obj, item){getURL("YOUR URL","_blank");} _root.menu=myMenu; |
Time for some explaining !! Ok see this ? put YOUR text in 1st line then look a the 2nd line listed here type in the URL including http:// , you can also change how it opens up by looking at this section of my tutorial |
myMenu.customItems.push(new ContextMenuItem("YOUR TEXT", itemHandler1)); function itemHandler1(obj, item){getURL("YOURURL","_blank");} |
1 |
2 |
Then Your Done ! |
At the begining of Custom Right Click Menus I said I would tell you how to make a menu item that that would take you back or forward to a frame in your flash well now im gonna tell you how. First open a premade document in flash and make a new layer name it "Script", make the frames on this layer the entire length of your flash. Now go to the first frame and open the Actions panel put this script in it |
var myMenu=new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("YOURPHRASE", itemHandler1)); function itemHandler1(obj, item){gotoAndPlay(YOURFRAME);} _root.menu=myMenu; |
In the 3 rd line of this script put the title of your page, For instance I put "Main Menu" for the Main Menu. In the 4 th line insert your frame label or the frame number. And Your Done! |
var myMenu=new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("YOURPHRASE", itemHandler1)); function itemHandler1(obj, item){gotoAndPlay(YOURFRAME);} _root.menu=myMenu; |
URL buttons |
Here I am going to tell you how to create a URL button that will open a website in either your current window or a new window. Open flash and create a new document, make a button with A website url or title on it like this : |
Newgrounds |
Now that you have your button time to make it do something. You can make it do one of two things it can open in a new window like mine did or open in the same window as the flash. It's completely up to you which it does, I have both scripts here both are very simple |
on(release){ getURL("YOURURL", "_blank"); } |
on(release){ getURL("YOURURL", "_self"); } |
New window |
Same window |
There you go your own URL button! |
Cursor Follower |
This is a relativialy simple and easy-to-use effect to put in a flash. The first thing you need to know is that if you have a custom cursor it is going to follow the little symbol |
Knowing that create what ever you want to follow or "chase" your cursor heres what I'm gonna use. Just be sure to make it a movie clip or this whole thing wont work. |
To acheive this effect i had to move the little"crosshairs" to the point of the arrow |
Ok now for the script copy and paste this into the actions panel |
onClipEvent (enterFrame) { myRadians = Math.atan2(_root._ymouse-this._y, _root._xmouse-this._x); myDegrees = Math.round((myRadians*180/Math.PI)); _root.yChange = Math.round(_root._ymouse-this._y); _root.xChange = Math.round(_root._xmouse-this._x); _root.yMove = Math.round(_root.yChange/20); _root.xMove = Math.round(_root.xChange/20); this._y += _root.yMove; this._x += _root.xMove; this._rotation = myDegrees+90; } |
If all went well you should have a cursor chaser! |
ActionScript [AS1/AS2]
Frame 1function itemHandler3(obj, item) { gotoAndStop ("menu"); } function itemHandler5(obj, item) { _quality = "high"; } function itemHandler6(obj, item) { _quality = "medium"; } function itemHandler7(obj, item) { _quality = "low"; } root_cm = new ContextMenu(); root_cm.hideBuiltInItems(); ccc_cmi = new ContextMenuItem("Main Menu", itemHandler3); eee_cmi = new ContextMenuItem("High Quality", itemHandler5); fff_cmi = new ContextMenuItem("Mid Quality", itemHandler6); ggg_cmi = new ContextMenuItem("Low Quality", itemHandler7); ccc_cmi.separatorBefore = true; eee_cmi.separatorBefore = true; root_cm.customItems.push(aaa_cmi, bbb_cmi, ccc_cmi, ddd_cmi, eee_cmi, fff_cmi, ggg_cmi); _root.menu = root_cm; stop();Instance of Symbol 28 MovieClip in Frame 1onClipEvent (load) { startDrag ("", true); Mouse.hide(); }Frame 70function itemHandler1(obj, item) { gotoAndPlay ("menu"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Main Menu", itemHandler1)); _root.menu = myMenu; stop();Frame 71stop();Frame 72stop();Frame 73stop();Frame 74stop();Frame 75stop();Frame 76stop();Frame 77stop();Frame 78stop();Frame 80function itemHandler1(obj, item) { gotoAndPlay ("menu"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Main Menu", itemHandler1)); _root.menu = myMenu; stop();Frame 81stop();Frame 82stop();Frame 83stop();Frame 84stop();Frame 85stop();Frame 87stop();Frame 88stop();Frame 89stop();Frame 90stop();Frame 91stop();Frame 92stop();Frame 93stop();Frame 94stop();Frame 95stop();Frame 96stop();Frame 100stop();Frame 101stop();Frame 102stop();Frame 103function itemHandler1(obj, item) { getURL ("http://newgrounds.com", "_blank"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Newgrounds", itemHandler1)); _root.menu = myMenu; stop();Frame 104stop();Frame 105function itemHandler1(obj, item) { gotoAndPlay ("menu"); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); myMenu.customItems.push(new ContextMenuItem("Main Menu", itemHandler1)); _root.menu = myMenu; stop();Frame 106stop();Frame 112stop();Instance of Symbol 124 MovieClip in Frame 112onClipEvent (load) { speed = 5; } onClipEvent (enterFrame) { _root.speed = speed; _root.mph = Number(speed) * 2; _root.mph = _root.mph - (_root.mph % 1); if (_root.mph < 1) { _root.mph = 1; } if (Key.isDown(38)) { speed = speed + 2; } if (Key.isDown(40)) { speed = speed - 1; } if (Math.abs(speed) > 20) { speed = speed * 0.7; } if (Key.isDown(37)) { _rotation = (_rotation - 14); } if (Key.isDown(39)) { _rotation = (_rotation + 14); } speed = speed * 0.98; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.boundary.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } else { speed = speed * -0.6; } } onClipEvent (enterFrame) { if (this.hitTest(_root.top)) { this._y = this._y + speed; } if (this.hitTest(_root.bottom)) { this._y = this._y - speed; } if (this.hitTest(_root.left)) { this._x = this._x + speed; } if (this.hitTest(_root.right)) { this._x = this._x - speed; } }Frame 125stop();Frame 126stop();Frame 127stop();Frame 130stop();Frame 131stop();Frame 132stop();Instance of Symbol 259 MovieClip in Frame 132onClipEvent (enterFrame) { myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root._ymouse - this._y); _root.xChange = Math.round(_root._xmouse - this._x); _root.yMove = Math.round(_root.yChange / 20); _root.xMove = Math.round(_root.xChange / 20); this._y = this._y + _root.yMove; this._x = this._x + _root.xMove; this._rotation = myDegrees + 90; }Frame 133stop();Instance of Symbol 259 MovieClip in Frame 133onClipEvent (enterFrame) { myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root._ymouse - this._y); _root.xChange = Math.round(_root._xmouse - this._x); _root.yMove = Math.round(_root.yChange / 20); _root.xMove = Math.round(_root.xChange / 20); this._y = this._y + _root.yMove; this._x = this._x + _root.xMove; this._rotation = myDegrees + 90; }Frame 134stop();Symbol 10 Buttonon (release) { _root.play(); }Symbol 11 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }Symbol 11 MovieClip Frame 2gotoAndPlay (1);Symbol 49 Buttonon (release) { nextFrame(); }Symbol 52 Buttonon (release) { gotoAndStop ("car controls"); }Symbol 55 Buttonon (release) { gotoAndStop ("digitalclock"); }Symbol 58 Buttonon (release) { gotoAndStop ("URLbuttons"); }Symbol 61 Buttonon (release) { gotoAndStop ("follower"); }Symbol 64 Buttonon (release) { gotoAndStop ("Custom right"); }Symbol 69 Buttonon (release) { nextFrame(); }Symbol 71 Buttonon (release) { gotoAndStop (14); }Symbol 74 Buttonon (release) { prevFrame(); }Symbol 114 Buttonon (release) { gotoAndStop ("menu"); }Symbol 119 Buttonon (release) { gotoAndStop ("car game"); }Symbol 120 Buttonon (release) { nextFrame(); }Symbol 121 Buttonon (release) { gotoAndStop ("menu"); }Symbol 132 Buttonon (release) { prevFrame(); }Symbol 157 MovieClip Frame 1play();Symbol 163 MovieClip Frame 1time = new Date(); var seconds = time.getSeconds(); var minutes = time.getMinutes(); var hours = time.getHours(); if (hours < 12) { ampm = "AM"; } else { ampm = "PM"; } while (hours > 12) { hours = hours - 12; } if (hours < 10) { hours = "0" + hours; } if (minutes < 10) { minutes = "0" + minutes; } if (seconds < 10) { seconds = "0" + seconds; } clock_txt.text = (((((hours + ":") + minutes) + ":") + seconds) + " ") + ampm;Symbol 208 MovieClip Frame 1time = new Date(); var seconds = time.getSeconds(); var minutes = time.getMinutes(); var hours = time.getHours(); if (hours < 12) { ampm = "AM"; } else { ampm = "PM"; } while (hours > 12) { hours = hours - 12; } if (hours < 10) { hours = "0" + hours; } if (minutes < 10) { minutes = "0" + minutes; } if (seconds < 10) { seconds = "0" + seconds; } clock_txt.text = (((((hours + ":") + minutes) + ":") + seconds) + " ") + ampm;Symbol 218 Buttonon (release) { gotoAndStop ("website"); }Symbol 222 Buttonon (release) { gotoAndStop ("frame link"); }Symbol 231 Buttonon (release) { prevFrame(); }Symbol 240 Buttonon (release) { gotoAndStop ("car controls"); }Symbol 247 Buttonon (release) { getURL ("http://newgrounds.com", "_blank"); }
Library Items
Symbol 1 Graphic | Used by:2 Timeline | |
Symbol 2 MovieClip | Uses:1 | Used by:11 |
Symbol 3 Graphic | Used by:11 | |
Symbol 4 Font | Used by:5 7 | |
Symbol 5 Text | Uses:4 | Used by:11 |
Symbol 6 Graphic | Used by:10 | |
Symbol 7 Text | Uses:4 | Used by:10 |
Symbol 8 Graphic | Used by:10 | |
Symbol 9 Graphic | Used by:10 | |
Symbol 10 Button | Uses:6 7 8 9 | Used by:11 |
Symbol 11 MovieClip | Uses:2 3 5 10 | Used by:Timeline |
Symbol 12 Graphic | Used by:20 | |
Symbol 13 Font | Used by:14 | |
Symbol 14 Text | Uses:13 | Used by:20 |
Symbol 15 Font | Used by:16 17 | |
Symbol 16 Text | Uses:15 | Used by:20 |
Symbol 17 Text | Uses:15 | Used by:20 |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:20 |
Symbol 20 MovieClip | Uses:12 14 16 17 19 | Used by:Timeline |
Symbol 21 ShapeTweening | Used by:28 | |
Symbol 22 ShapeTweening | Used by:28 | |
Symbol 23 Graphic | Used by:28 | |
Symbol 24 ShapeTweening | Used by:28 | |
Symbol 25 ShapeTweening | Used by:28 | |
Symbol 26 Graphic | Used by:28 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip | Uses:21 22 23 24 25 26 27 | Used by:Timeline |
Symbol 29 Sound | Used by:Timeline | |
Symbol 30 Font | Used by:31 32 33 34 35 36 37 40 41 42 43 44 45 | |
Symbol 31 Text | Uses:30 | Used by:Timeline |
Symbol 32 Text | Uses:30 | Used by:Timeline |
Symbol 33 Text | Uses:30 | Used by:Timeline |
Symbol 34 Text | Uses:30 | Used by:Timeline |
Symbol 35 Text | Uses:30 | Used by:Timeline |
Symbol 36 Text | Uses:30 | Used by:Timeline |
Symbol 37 Text | Uses:30 | Used by:Timeline |
Symbol 38 Font | Used by:39 46 47 48 50 51 53 54 56 57 59 60 62 63 67 73 94 95 113 116 118 122 126 130 131 133 135 136 160 164 166 170 171 172 175 177 181 185 186 187 191 192 193 198 201 204 207 209 212 213 214 215 216 217 219 220 221 223 227 232 234 235 237 238 242 244 249 252 253 254 256 257 260 262 263 264 | |
Symbol 39 Text | Uses:38 | Used by:Timeline |
Symbol 40 Text | Uses:30 | Used by:Timeline |
Symbol 41 Text | Uses:30 | Used by:Timeline |
Symbol 42 Text | Uses:30 | Used by:Timeline |
Symbol 43 Text | Uses:30 | Used by:Timeline |
Symbol 44 Text | Uses:30 | Used by:Timeline |
Symbol 45 Text | Uses:30 | Used by:Timeline |
Symbol 46 Text | Uses:38 | Used by:Timeline |
Symbol 47 Text | Uses:38 | Used by:49 |
Symbol 48 Text | Uses:38 | Used by:49 |
Symbol 49 Button | Uses:47 48 | Used by:Timeline |
Symbol 50 Text | Uses:38 | Used by:52 |
Symbol 51 Text | Uses:38 | Used by:52 |
Symbol 52 Button | Uses:50 51 | Used by:Timeline |
Symbol 53 Text | Uses:38 | Used by:55 |
Symbol 54 Text | Uses:38 | Used by:55 |
Symbol 55 Button | Uses:53 54 | Used by:Timeline |
Symbol 56 Text | Uses:38 | Used by:58 |
Symbol 57 Text | Uses:38 | Used by:58 |
Symbol 58 Button | Uses:56 57 | Used by:Timeline |
Symbol 59 Text | Uses:38 | Used by:61 |
Symbol 60 Text | Uses:38 | Used by:61 |
Symbol 61 Button | Uses:59 60 | Used by:Timeline |
Symbol 62 Text | Uses:38 | Used by:64 |
Symbol 63 Text | Uses:38 | Used by:64 |
Symbol 64 Button | Uses:62 63 | Used by:Timeline |
Symbol 65 Font | Used by:66 82 86 90 99 103 107 111 115 162 165 167 171 210 211 241 255 | |
Symbol 66 Text | Uses:65 | Used by:Timeline |
Symbol 67 Text | Uses:38 | Used by:Timeline |
Symbol 68 Graphic | Used by:69 120 | |
Symbol 69 Button | Uses:68 | Used by:Timeline |
Symbol 70 Graphic | Used by:71 74 121 132 231 240 | |
Symbol 71 Button | Uses:70 | Used by:Timeline |
Symbol 72 Graphic | Used by:Timeline | |
Symbol 73 Text | Uses:38 | Used by:Timeline |
Symbol 74 Button | Uses:70 | Used by:Timeline |
Symbol 75 Bitmap | Used by:76 | |
Symbol 76 Graphic | Uses:75 | Used by:Timeline |
Symbol 77 Bitmap | Used by:78 | |
Symbol 78 Graphic | Uses:77 | Used by:79 |
Symbol 79 MovieClip | Uses:78 | Used by:Timeline |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip | Uses:80 | Used by:108 Timeline |
Symbol 82 Text | Uses:65 | Used by:Timeline |
Symbol 83 Bitmap | Used by:85 | |
Symbol 84 Bitmap | Used by:85 | |
Symbol 85 Graphic | Uses:83 84 | Used by:Timeline |
Symbol 86 Text | Uses:65 | Used by:Timeline |
Symbol 87 Bitmap | Used by:89 | |
Symbol 88 Bitmap | Used by:89 | |
Symbol 89 Graphic | Uses:87 88 | Used by:Timeline |
Symbol 90 Text | Uses:65 | Used by:Timeline |
Symbol 91 Bitmap | Used by:92 | |
Symbol 92 Graphic | Uses:91 | Used by:Timeline |
Symbol 93 Graphic | Used by:97 | |
Symbol 94 Text | Uses:38 | Used by:97 |
Symbol 95 Text | Uses:38 | Used by:97 |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 MovieClip | Uses:93 94 95 96 | Used by:Timeline |
Symbol 98 Graphic | Used by:Timeline | |
Symbol 99 Text | Uses:65 | Used by:Timeline |
Symbol 100 Bitmap | Used by:101 | |
Symbol 101 Graphic | Uses:100 | Used by:Timeline |
Symbol 102 Graphic | Used by:Timeline | |
Symbol 103 Text | Uses:65 | Used by:Timeline |
Symbol 104 Bitmap | Used by:105 | |
Symbol 105 Graphic | Uses:104 | Used by:Timeline |
Symbol 106 Graphic | Used by:Timeline | |
Symbol 107 Text | Uses:65 | Used by:Timeline |
Symbol 108 MovieClip | Uses:81 | Used by:Timeline |
Symbol 109 Bitmap | Used by:110 | |
Symbol 110 Graphic | Uses:109 | Used by:Timeline |
Symbol 111 Text | Uses:65 | Used by:Timeline |
Symbol 112 Graphic | Used by:114 | |
Symbol 113 Text | Uses:38 | Used by:114 |
Symbol 114 Button | Uses:112 113 | Used by:Timeline |
Symbol 115 Text | Uses:65 | Used by:Timeline |
Symbol 116 Text | Uses:38 | Used by:Timeline |
Symbol 117 Graphic | Used by:119 | |
Symbol 118 Text | Uses:38 | Used by:119 |
Symbol 119 Button | Uses:117 118 | Used by:Timeline |
Symbol 120 Button | Uses:68 | Used by:Timeline |
Symbol 121 Button | Uses:70 | Used by:Timeline |
Symbol 122 Text | Uses:38 | Used by:Timeline |
Symbol 123 Graphic | Used by:124 | |
Symbol 124 MovieClip | Uses:123 | Used by:Timeline |
Symbol 125 Graphic | Used by:Timeline | |
Symbol 126 Text | Uses:38 | Used by:Timeline |
Symbol 127 Bitmap | Used by:128 | |
Symbol 128 Graphic | Uses:127 | Used by:Timeline |
Symbol 129 Graphic | Used by:Timeline | |
Symbol 130 Text | Uses:38 | Used by:Timeline |
Symbol 131 EditableText | Uses:38 | Used by:Timeline |
Symbol 132 Button | Uses:70 | Used by:Timeline |
Symbol 133 EditableText | Uses:38 | Used by:Timeline |
Symbol 134 Graphic | Used by:Timeline | |
Symbol 135 Text | Uses:38 | Used by:Timeline |
Symbol 136 EditableText | Uses:38 | Used by:Timeline |
Symbol 137 Bitmap | Used by:138 | |
Symbol 138 Graphic | Uses:137 | Used by:157 |
Symbol 139 Graphic | Used by:157 | |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:157 |
Symbol 142 Graphic | Used by:157 | |
Symbol 143 Graphic | Used by:157 | |
Symbol 144 Graphic | Used by:157 | |
Symbol 145 Graphic | Used by:157 | |
Symbol 146 Graphic | Used by:157 | |
Symbol 147 Graphic | Used by:157 | |
Symbol 148 Graphic | Used by:157 | |
Symbol 149 Graphic | Used by:157 | |
Symbol 150 Graphic | Used by:157 | |
Symbol 151 Graphic | Used by:157 | |
Symbol 152 Graphic | Used by:157 | |
Symbol 153 Graphic | Used by:157 | |
Symbol 154 Graphic | Used by:157 | |
Symbol 155 Graphic | Used by:157 | |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip | Uses:138 139 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | Used by:Timeline |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:158 | Used by:Timeline |
Symbol 160 Text | Uses:38 | Used by:Timeline |
Symbol 161 Graphic | Used by:163 208 Timeline | |
Symbol 162 EditableText | Uses:65 | Used by:163 |
Symbol 163 MovieClip | Uses:161 162 | Used by:Timeline |
Symbol 164 Text | Uses:38 | Used by:Timeline |
Symbol 165 Text | Uses:65 | Used by:Timeline |
Symbol 166 Text | Uses:38 | Used by:Timeline |
Symbol 167 Text | Uses:65 | Used by:Timeline |
Symbol 168 Bitmap | Used by:169 | |
Symbol 169 Graphic | Uses:168 | Used by:Timeline |
Symbol 170 Text | Uses:38 | Used by:Timeline |
Symbol 171 Text | Uses:65 38 | Used by:Timeline |
Symbol 172 Text | Uses:38 | Used by:Timeline |
Symbol 173 Bitmap | Used by:174 | |
Symbol 174 Graphic | Uses:173 | Used by:Timeline |
Symbol 175 Text | Uses:38 | Used by:Timeline |
Symbol 176 Graphic | Used by:Timeline | |
Symbol 177 Text | Uses:38 | Used by:Timeline |
Symbol 178 Bitmap | Used by:179 | |
Symbol 179 Graphic | Uses:178 | Used by:Timeline |
Symbol 180 Graphic | Used by:Timeline | |
Symbol 181 Text | Uses:38 | Used by:Timeline |
Symbol 182 Bitmap | Used by:184 | |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:182 183 | Used by:Timeline |
Symbol 185 EditableText | Uses:38 | Used by:Timeline |
Symbol 186 Text | Uses:38 | Used by:Timeline |
Symbol 187 EditableText | Uses:38 | Used by:Timeline |
Symbol 188 Bitmap | Used by:190 | |
Symbol 189 Bitmap | Used by:190 | |
Symbol 190 Graphic | Uses:188 189 | Used by:Timeline |
Symbol 191 Text | Uses:38 | Used by:Timeline |
Symbol 192 Text | Uses:38 | Used by:Timeline |
Symbol 193 EditableText | Uses:38 | Used by:Timeline |
Symbol 194 Bitmap | Used by:196 | |
Symbol 195 Bitmap | Used by:196 | |
Symbol 196 Graphic | Uses:194 195 | Used by:Timeline |
Symbol 197 Graphic | Used by:Timeline | |
Symbol 198 Text | Uses:38 | Used by:Timeline |
Symbol 199 Bitmap | Used by:200 | |
Symbol 200 Graphic | Uses:199 | Used by:Timeline |
Symbol 201 EditableText | Uses:38 | Used by:Timeline |
Symbol 202 Bitmap | Used by:203 | |
Symbol 203 Graphic | Uses:202 | Used by:Timeline |
Symbol 204 Text | Uses:38 | Used by:Timeline |
Symbol 205 Bitmap | Used by:206 | |
Symbol 206 Graphic | Uses:205 | Used by:Timeline |
Symbol 207 EditableText | Uses:38 | Used by:208 |
Symbol 208 MovieClip | Uses:161 207 | Used by:Timeline |
Symbol 209 Text | Uses:38 | Used by:Timeline |
Symbol 210 Text | Uses:65 | Used by:Timeline |
Symbol 211 Text | Uses:65 | Used by:Timeline |
Symbol 212 Text | Uses:38 | Used by:Timeline |
Symbol 213 Text | Uses:38 | Used by:Timeline |
Symbol 214 Text | Uses:38 | Used by:Timeline |
Symbol 215 Text | Uses:38 | Used by:218 |
Symbol 216 Text | Uses:38 | Used by:218 |
Symbol 217 Text | Uses:38 | Used by:218 |
Symbol 218 Button | Uses:215 216 217 | Used by:Timeline |
Symbol 219 Text | Uses:38 | Used by:222 |
Symbol 220 Text | Uses:38 | Used by:222 |
Symbol 221 Text | Uses:38 | Used by:222 |
Symbol 222 Button | Uses:219 220 221 | Used by:Timeline |
Symbol 223 Text | Uses:38 | Used by:Timeline |
Symbol 224 Font | Used by:225 228 229 230 250 251 | |
Symbol 225 EditableText | Uses:224 | Used by:Timeline |
Symbol 226 Graphic | Used by:Timeline | |
Symbol 227 Text | Uses:38 | Used by:Timeline |
Symbol 228 Text | Uses:224 | Used by:Timeline |
Symbol 229 Text | Uses:224 | Used by:Timeline |
Symbol 230 Text | Uses:224 | Used by:Timeline |
Symbol 231 Button | Uses:70 | Used by:Timeline |
Symbol 232 Text | Uses:38 | Used by:Timeline |
Symbol 233 Graphic | Used by:Timeline | |
Symbol 234 Text | Uses:38 | Used by:Timeline |
Symbol 235 EditableText | Uses:38 | Used by:Timeline |
Symbol 236 Graphic | Used by:Timeline | |
Symbol 237 Text | Uses:38 | Used by:Timeline |
Symbol 238 EditableText | Uses:38 | Used by:Timeline |
Symbol 239 Graphic | Used by:Timeline | |
Symbol 240 Button | Uses:70 | Used by:Timeline |
Symbol 241 Text | Uses:65 | Used by:Timeline |
Symbol 242 Text | Uses:38 | Used by:Timeline |
Symbol 243 Graphic | Used by:247 | |
Symbol 244 Text | Uses:38 | Used by:247 |
Symbol 245 Graphic | Used by:247 | |
Symbol 246 Graphic | Used by:247 | |
Symbol 247 Button | Uses:243 244 245 246 | Used by:Timeline |
Symbol 248 Graphic | Used by:Timeline | |
Symbol 249 Text | Uses:38 | Used by:Timeline |
Symbol 250 EditableText | Uses:224 | Used by:Timeline |
Symbol 251 EditableText | Uses:224 | Used by:Timeline |
Symbol 252 Text | Uses:38 | Used by:Timeline |
Symbol 253 Text | Uses:38 | Used by:Timeline |
Symbol 254 Text | Uses:38 | Used by:Timeline |
Symbol 255 Text | Uses:65 | Used by:Timeline |
Symbol 256 Text | Uses:38 | Used by:Timeline |
Symbol 257 Text | Uses:38 | Used by:Timeline |
Symbol 258 Graphic | Used by:259 | |
Symbol 259 MovieClip | Uses:258 | Used by:Timeline |
Symbol 260 Text | Uses:38 | Used by:Timeline |
Symbol 261 Graphic | Used by:Timeline | |
Symbol 262 Text | Uses:38 | Used by:Timeline |
Symbol 263 EditableText | Uses:38 | Used by:Timeline |
Symbol 264 Text | Uses:38 | Used by:Timeline |
Instance Names
"clock_txt" | Frame 92 | Symbol 187 EditableText |
"clock_txt" | Frame 93 | Symbol 193 EditableText |
"bar" | Symbol 11 MovieClip Frame 1 | Symbol 2 MovieClip |
"clock_txt" | Symbol 163 MovieClip Frame 1 | Symbol 162 EditableText |
"clock_txt" | Symbol 208 MovieClip Frame 1 | Symbol 207 EditableText |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
Protect (24) | Timeline Frame 1 | 0 bytes "" |
Labels
"menu" | Frame 70 |
"car controls" | Frame 80 |
"digitalclock" | Frame 87 |
"Custom right" | Frame 100 |
"website" | Frame 103 |
"frame link" | Frame 105 |
"car game" | Frame 112 |
"URLbuttons" | Frame 125 |
"follower" | Frame 130 |
"loaded" | Symbol 11 MovieClip Frame 3 |
"animation" | Symbol 157 MovieClip Frame 1 |
|