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

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

roadblock.swf

This is the info page for
Flash #1314

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


Text
Loading

START GAME

PASSWORD

INSTRUCTIONS

OAD

LOCKS

CREDITS

INSTRUCTIONS

RoadBlocks is a simple game
where you try to get the ball:

into the goal:

Guide the ball using the arrow
keys. The ball will continue in
its path until it is stopped by a
wall. If the ball hits a portal:

it will appear out of the matching
portal traveling in the same
direction when it entered the
first portal.

NEXT

INSTRUCTIONS

MAIN

A yellow arrow on the map is
called a funnel:

Funnels act as on way streets.
If the ball hits the funnel
traveling the way of the arrow,
it passes through, otherwise it
acts as a wall. use the   button
to toggle the quality and the
buttons to toggle music.
Every level has a password.
use these to continue where
____you left off. Good Luck!

PASSWORD

Please enter a Password

LEVEL

PASSWORD

MUSIC

Congradulations!

RoadBlocks
created by:
Michael Gagnon
produced by:
Michael Gagnon
programming by:
Alex Withrow
graphics by:
Alex Withrow
Michael Gagnon
level design:
Michael Gagnon
music:
opening by Q-Music
ending by Si Lister
level loop by Nemo
special thanks to:
Flashkit.com
Dan for the T-Prompt
email:
awithrow@gmu.edu
mgagnon@earthlink.net

MAIN

ActionScript [AS1/AS2]

Frame 1
Stage.showMenu = false;
Frame 2
stopAllSounds(); mysound = new Sound(); mysound.attachSound("opening"); complete = false; mysound.start(0, 65583); playing = true; level = 1; password = none; playing = false;
Frame 6
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 1; password = "(none)"; _root.fader.gotoAndPlay(1); startx = 182; starty = 325; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level2";
Instance of Symbol 130 MovieClip "Ball" in Frame 6
onClipEvent (load) { moving = false; direction = none; movespeed = 26; teleport = false; mysound = new Sound(); mysound.attachSound("die"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (moving == true) { if (direction == "right") { this.gotoAndStop(2); this._x = this._x + movespeed; } else if (direction == "left") { this.gotoAndStop(2); this._x = this._x - movespeed; } else if (direction == "up") { this.gotoAndStop(3); this._y = this._y - movespeed; } else if (direction == "down") { this.gotoAndStop(3); this._y = this._y + movespeed; } } else if (moving == false) { teleport = false; } if ((Key.isDown(39) && (moving == false)) && (direction != "right")) { moving = true; direction = "right"; } else if ((Key.isDown(37) && (moving == false)) && (direction != "left")) { moving = true; direction = "left"; } else if ((Key.isDown(38) && (moving == false)) && (direction != "up")) { moving = true; direction = "up"; } else if ((Key.isDown(40) && (moving == false)) && (direction != "down")) { moving = true; direction = "down"; } if (((((this._x >= 760) || (this._x <= -10)) || (this._y >= 510)) || (this._y <= -10)) && (_root.complete != true)) { mysound.start(0, 1); this._x = _root.startx; this._y = _root.starty; moving = false; direction = none; gotoAndStop (1); } if (_root.complete == true) { this._x = this._x + horzMove; this._y = this._y - vertMove; vertMove = vertMove - 2; this._rotation = this._rotation + rotate; } }
Frame 7
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); _root.complete = false; level = 2; password = "k1"; _root.fader.gotoAndPlay(1); startx = 390; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level3";
Frame 8
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); _root.complete = false; level = 3; password = "hottub"; _root.fader.gotoAndPlay(1); startx = 416; starty = 273; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level4";
Instance of Symbol 130 MovieClip "Ball" in Frame 8
onClipEvent (load) { moving = false; direction = none; movespeed = 26; teleport = false; mysound = new Sound(); mysound.attachSound("die"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (moving == true) { if (direction == "right") { this.gotoAndStop(2); this._x = this._x + movespeed; } else if (direction == "left") { this.gotoAndStop(2); this._x = this._x - movespeed; } else if (direction == "up") { this.gotoAndStop(3); this._y = this._y - movespeed; } else if (direction == "down") { this.gotoAndStop(3); this._y = this._y + movespeed; } } else if (moving == false) { teleport = false; } if ((Key.isDown(39) && (moving == false)) && (direction != "right")) { moving = true; direction = "right"; } else if ((Key.isDown(37) && (moving == false)) && (direction != "left")) { moving = true; direction = "left"; } else if ((Key.isDown(38) && (moving == false)) && (direction != "up")) { moving = true; direction = "up"; } else if ((Key.isDown(40) && (moving == false)) && (direction != "down")) { moving = true; direction = "down"; } if (((((this._x >= 760) || (this._x <= -10)) || (this._y >= 510)) || (this._y <= -10)) && (_root.complete != true)) { mysound.start(0, 1); this._x = _root.startx; this._y = _root.starty; moving = false; direction = none; gotoAndStop (1); } if (_root.complete == true) { this._x = this._x + horzMove; this._y = this._y - vertMove; vertMove = vertMove - 2; this._rotation = this._rotation + rotate; } }
Frame 9
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); _root.complete = false; level = 4; password = "trashcan"; _root.fader.gotoAndPlay(1); startx = 390; starty = 195; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level5";
Frame 10
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); _root.complete = (falsecomplete = false); level = 5; password = "ciaorules"; _root.fader.gotoAndPlay(1); startx = 312; starty = 143; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level6";
Instance of Symbol 80 MovieClip "portal1" in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Instance of Symbol 80 MovieClip "portal2" in Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Frame 11
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); _root.complete = false; level = 6; password = "ciaosucks"; _root.fader.gotoAndPlay(1); startx = 468; starty = 273; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level7";
Instance of Symbol 80 MovieClip "portal2" in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Instance of Symbol 80 MovieClip "portal1" in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Frame 12
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 7; password = "ikes"; _root.fader.gotoAndPlay(1); startx = 234; starty = 169; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level8";
Instance of Symbol 80 MovieClip "portal1" in Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Frame 13
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 8; password = "fenwick"; _root.fader.gotoAndPlay(1); startx = 208; starty = 169; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level9";
Instance of Symbol 130 MovieClip "Ball" in Frame 13
onClipEvent (load) { moving = false; direction = none; movespeed = 26; teleport = false; mysound = new Sound(); mysound.attachSound("die"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (moving == true) { if (direction == "right") { this.gotoAndStop(2); this._x = this._x + movespeed; } else if (direction == "left") { this.gotoAndStop(2); this._x = this._x - movespeed; } else if (direction == "up") { this.gotoAndStop(3); this._y = this._y - movespeed; } else if (direction == "down") { this.gotoAndStop(3); this._y = this._y + movespeed; } } else if (moving == false) { teleport = false; } if ((Key.isDown(39) && (moving == false)) && (direction != "right")) { moving = true; direction = "right"; } else if ((Key.isDown(37) && (moving == false)) && (direction != "left")) { moving = true; direction = "left"; } else if ((Key.isDown(38) && (moving == false)) && (direction != "up")) { moving = true; direction = "up"; } else if ((Key.isDown(40) && (moving == false)) && (direction != "down")) { moving = true; direction = "down"; } if (((((this._x >= 760) || (this._x <= -10)) || (this._y >= 510)) || (this._y <= -10)) && (_root.complete != true)) { mysound.start(0, 1); this._x = _root.startx; this._y = _root.starty; moving = false; direction = none; gotoAndStop (1); } if (_root.complete == true) { this._x = this._x + horzMove; this._y = this._y - vertMove; vertMove = vertMove - 2; this._rotation = this._rotation + rotate; } }
Instance of Symbol 80 MovieClip "portal1" in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Instance of Symbol 80 MovieClip "portal2" in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Frame 14
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 9; password = "kegstand"; _root.fader.gotoAndPlay(1); startx = 286; starty = 273; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level10";
Frame 15
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 10; password = "tprompt"; _root.fader.gotoAndPlay(1); startx = 338; starty = 221; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level11";
Frame 16
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 11; password = "tdkside1"; _root.fader.gotoAndPlay(1); startx = 416; starty = 143; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level12";
Instance of Symbol 80 MovieClip "portal1" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Instance of Symbol 80 MovieClip "portal2" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Frame 17
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 12; password = "ppdryarea"; _root.fader.gotoAndPlay(1); startx = 338; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level13";
Frame 18
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 13; password = "enterprise"; _root.fader.gotoAndPlay(1); startx = 364; starty = 221; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level14";
Frame 19
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 14; password = "krasnow"; _root.fader.gotoAndPlay(1); startx = 572; starty = 429; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level15";
Instance of Symbol 80 MovieClip "portal2" in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Instance of Symbol 80 MovieClip "portal1" in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Frame 20
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 15; password = "webcam"; _root.fader.gotoAndPlay(1); startx = 260; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level16";
Frame 21
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 16; password = "mertin"; _root.fader.gotoAndPlay(1); startx = 364; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level17";
Instance of Symbol 80 MovieClip "portal1" in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Frame 22
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 17; password = "hotwater"; _root.fader.gotoAndPlay(1); startx = 390; starty = 221; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level18";
Frame 23
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 18; password = "hospital"; _root.fader.gotoAndPlay(1); startx = 286; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level19";
Instance of Symbol 80 MovieClip "portal2" in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Instance of Symbol 80 MovieClip "portal1" in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Frame 24
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 19; password = "sub2"; _root.fader.gotoAndPlay(1); startx = 286; starty = 247; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level20";
Instance of Symbol 80 MovieClip "portal1" in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal2._x; _root.Ball._y = _root.portal2._y; } }
Instance of Symbol 80 MovieClip "portal2" in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.Ball) && (_root.Ball.teleport == false)) { gotoAndStop (2); _root.Ball.teleport = true; _root.Ball._x = _root.portal1._x; _root.Ball._y = _root.portal1._y; } }
Frame 25
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 20; password = "jazzmans"; _root.fader.gotoAndPlay(1); startx = 182; starty = 299; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level21";
Frame 26
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 21; password = "sandy"; _root.fader.gotoAndPlay(1); startx = 286; starty = 195; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "level22";
Instance of Symbol 130 MovieClip "Ball" in Frame 26
onClipEvent (load) { moving = false; direction = none; movespeed = 26; teleport = false; mysound = new Sound(); mysound.attachSound("die"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (moving == true) { if (direction == "right") { this.gotoAndStop(2); this._x = this._x + movespeed; } else if (direction == "left") { this.gotoAndStop(2); this._x = this._x - movespeed; } else if (direction == "up") { this.gotoAndStop(3); this._y = this._y - movespeed; } else if (direction == "down") { this.gotoAndStop(3); this._y = this._y + movespeed; } } else if (moving == false) { teleport = false; } if ((Key.isDown(39) && (moving == false)) && (direction != "right")) { moving = true; direction = "right"; } else if ((Key.isDown(37) && (moving == false)) && (direction != "left")) { moving = true; direction = "left"; } else if ((Key.isDown(38) && (moving == false)) && (direction != "up")) { moving = true; direction = "up"; } else if ((Key.isDown(40) && (moving == false)) && (direction != "down")) { moving = true; direction = "down"; } if (((((this._x >= 760) || (this._x <= -10)) || (this._y >= 510)) || (this._y <= -10)) && (_root.complete != true)) { mysound.start(0, 1); this._x = _root.startx; this._y = _root.starty; moving = false; direction = none; gotoAndStop (1); } if (_root.complete == true) { this._x = this._x + horzMove; this._y = this._y - vertMove; vertMove = vertMove - 2; this._rotation = this._rotation + rotate; } }
Frame 27
mysound = new Sound(); mysound.attachSound("musicloop2"); if ((playing == false) && (manual != false)) { mysound.start(0, 65583); playing = true; } stop(); complete = false; level = 22; password = "corky"; _root.fader.gotoAndPlay(1); startx = 364; starty = 195; _root.Ball._x = startx; _root.Ball._y = starty; _root.Ball.direction = none; nextLevel = "credits";
Frame 28
stopAllSounds(); mysound = new Sound(); mysound.attachSound("ending"); mysound.start(0, 65583); playing = true; stop();
Frame 29
gotoAndPlay(nextLevel);
Symbol 25 Button
on (release) { _root.gotoAndStop(2); }
Symbol 26 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 26 MovieClip Frame 2
gotoAndPlay (1);
Symbol 34 Button
on (release) { gotoAndStop ("level1"); stopAllSounds(); }
Symbol 35 Button
on (release) { gotoAndStop ("password"); }
Symbol 36 Button
on (release) { gotoAndStop ("instructions1"); }
Instance of Symbol 41 MovieClip in Symbol 42 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 44 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 47 MovieClip in Symbol 48 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 50 MovieClip in Symbol 51 MovieClip Frame 1
onClipEvent (load) { _root.complete = false; horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 53 MovieClip in Symbol 54 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 60 Button
on (release) { gotoAndStop ("credits"); }
Symbol 80 MovieClip Frame 1
stop();
Instance of Symbol 78 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 80 MovieClip Frame 2
gotoAndStop (1);
Instance of Symbol 78 MovieClip in Symbol 80 MovieClip Frame 2
/* no clip actions */
Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 1
/* no clip actions */
Symbol 84 Button
on (release) { gotoAndStop ("instructions2"); }
Instance of Symbol 105 MovieClip in Symbol 106 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (_root.Ball.direction != "left") { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 107 Button
on (release) { gotoAndStop ("main"); }
Symbol 116 Button
on (keyPress "<Enter>") { switch (passtxt) { case " " : passout = "Enter a Password"; break; case "test" : passout = "Password Accepted!"; break; case "k1" : passout = "Password Accepted!"; stopAllSounds(); gotoAndStop ("level2"); level = 2; password = "k1"; break; case "hottub" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level3"); level = 3; password = "hottub"; break; case "trashcan" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level4"); level = 4; password = "trashcan"; break; case "ciaorules" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level5"); level = 5; password = "ciaorules"; break; case "ciaosucks" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level6"); level = 6; password = "ciaosucks"; break; case "ikes" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level7"); level = 7; password = "ikes"; break; case "fenwick" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level8"); level = 8; password = "fenwick"; break; case "kegstand" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level9"); level = 9; password = "kegstand"; break; case "tprompt" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level10"); level = 10; password = "tprompt"; break; case "tdkside1" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level11"); level = 11; password = "tdkside1"; break; case "ppdryarea" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level12"); level = 12; password = "ppdryarea"; break; case "enterprise" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level13"); level = 13; password = "enterprise"; break; case "krasnow" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level14"); level = 14; password = "krasnow"; break; case "webcam" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level15"); level = 15; password = "webcam"; break; case "mertin" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level16"); level = 16; password = "mertin"; break; case "hotwater" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level17"); level = 17; password = "hotwater"; break; case "hospital" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level18"); level = 18; password = "hospital"; break; case "sub2" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level19"); level = 19; password = "sub2"; break; case "jazzmans" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level20"); level = 20; password = "jazzmans"; break; case "sandy" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level21"); level = 21; password = "sandy"; break; case "corky" : stopAllSounds(); passout = "Password Accepted!"; gotoAndStop ("level22"); level = 22; password = "corky"; break; default : passout = "Invalid Password!"; } }
Symbol 126 Button
on (release) { if (_root.playing == false) { _root.mysound.start(0, 65583); _root.playing = true; manual = true; } }
Symbol 127 Button
on (release) { if (_root.playing == true) { _root.mysound.stop("musicloop2"); playing = false; manual = false; } }
Symbol 128 Button
on (release) { if (_root._quality == "HIGH") { _root._quality = "low"; } else if (_root._quality == "LOW") { _root._quality = "medium"; } else if (_root._quality == "MEDIUM") { _root._quality = "high"; } }
Symbol 130 MovieClip Frame 1
stop();
Symbol 130 MovieClip Frame 2
stop();
Symbol 130 MovieClip Frame 3
stop();
Symbol 130 MovieClip Frame 4
stop();
Symbol 131 MovieClip Frame 1
stop();
Instance of Symbol 83 MovieClip in Symbol 131 MovieClip Frame 1
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 131 MovieClip Frame 40
_root.gotoAndStop("trans");
Instance of Symbol 83 MovieClip in Symbol 131 MovieClip Frame 40
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; } }
Symbol 134 MovieClip Frame 1
password = _root.password; level = _root.level;
Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 2
onClipEvent (enterFrame) { level = root.level; password = _root.password; }
Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 12
onClipEvent (enterFrame) { level = root.level; password = _root.password; }
Symbol 134 MovieClip Frame 31
stop();
Symbol 135 MovieClip Frame 1
stop();
Instance of Symbol 83 MovieClip in Symbol 135 MovieClip Frame 1
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 135 MovieClip Frame 40
_root.gotoAndStop("trans");
Instance of Symbol 83 MovieClip in Symbol 135 MovieClip Frame 40
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; } }
Symbol 136 MovieClip Frame 1
stop();
Instance of Symbol 83 MovieClip in Symbol 136 MovieClip Frame 1
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } _parent.gotoAndPlay(2); } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 136 MovieClip Frame 40
_root.gotoAndStop("trans");
Instance of Symbol 83 MovieClip in Symbol 136 MovieClip Frame 40
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } _parent.gotoAndPlay(2); } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; } }
Symbol 137 MovieClip Frame 1
stop();
Instance of Symbol 83 MovieClip in Symbol 137 MovieClip Frame 1
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 137 MovieClip Frame 40
_root.gotoAndStop("trans");
Instance of Symbol 83 MovieClip in Symbol 137 MovieClip Frame 40
onClipEvent (load) { mysound = new Sound(); mysound.attachSound("thunk"); horzMove = random(20) - 10; vertMove = random(20); } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { _root.Ball.direction = none; mysound.start(0, 1); _root.complete = true; while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } _parent.gotoAndPlay(2); } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; } }
Instance of Symbol 139 MovieClip in Symbol 140 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 105 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (_root.Ball.direction != "right") { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 105 MovieClip in Symbol 142 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (_root.Ball.direction != "up") { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 105 MovieClip in Symbol 143 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (_root.Ball.direction != "down") { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Instance of Symbol 145 MovieClip in Symbol 146 MovieClip Frame 1
onClipEvent (load) { horzMove = random(20) - 10; vertMove = random(20); rotate = random(40) - 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.Ball)) { _root.Ball.moving = false; _root.Ball.gotoAndStop(4); if (_root.Ball.direction == "right") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x - 1; } } else if (_root.Ball.direction == "left") { while (this.hitTest(_root.Ball)) { _root.Ball._x = _root.Ball._x + 1; } } else if (_root.Ball.direction == "up") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y + 1; } } else if (_root.Ball.direction == "down") { while (this.hitTest(_root.Ball)) { _root.Ball._y = _root.Ball._y - 1; } } } if (_root.complete == true) { _parent._x = _parent._x + horzMove; _parent._y = _parent._y - vertMove; vertMove = vertMove - 2; _parent._rotation = _parent._rotation + rotate; } }
Symbol 149 Button
on (release) { gotoAndStop ("main"); }
Symbol 153 MovieClip Frame 460
stop();

Library Items

Symbol 1 Sound [thunk]
Symbol 2 Sound [die]
Symbol 3 Sound [opening]
Symbol 4 Sound [musicloop2]
Symbol 5 Sound [musicloop1]
Symbol 6 Sound [ending]
Symbol 7 GraphicUsed by:10
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:10
Symbol 10 MovieClipUses:7 9Used by:15
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:15
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:15
Symbol 15 MovieClipUses:10 12 14Used by:Timeline
Symbol 16 FontUsed by:17 62 151
Symbol 17 EditableTextUses:16Used by:Timeline
Symbol 18 FontUsed by:19 147
Symbol 19 TextUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:Timeline
Symbol 21 GraphicUsed by:25
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 ButtonUses:21 22 23 24Used by:26
Symbol 26 MovieClipUses:25Used by:Timeline
Symbol 27 FontUsed by:28 29 30 37 38 59 61 62 65 66 67 68 85 86 87 89 114 117 118 121 122 123 124 125 150
Symbol 28 TextUses:27Used by:Timeline
Symbol 29 TextUses:27Used by:Timeline
Symbol 30 TextUses:27Used by:Timeline
Symbol 31 GraphicUsed by:34 35 36 60 84 107 149
Symbol 32 GraphicUsed by:34 35 36 60 84 107 149
Symbol 33 GraphicUsed by:34 35 36 60 84 107 149
Symbol 34 ButtonUses:31 32 33Used by:Timeline
Symbol 35 ButtonUses:31 32 33Used by:Timeline
Symbol 36 ButtonUses:31 32 33Used by:Timeline
Symbol 37 TextUses:27Used by:Timeline
Symbol 38 TextUses:27Used by:Timeline
Symbol 39 BitmapUsed by:40 43 46 49 52 138
Symbol 40 GraphicUses:39Used by:41
Symbol 41 MovieClipUses:40Used by:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 GraphicUses:39Used by:44
Symbol 44 MovieClipUses:43Used by:45
Symbol 45 MovieClipUses:44Used by:Timeline
Symbol 46 GraphicUses:39Used by:47
Symbol 47 MovieClipUses:46Used by:48
Symbol 48 MovieClipUses:47Used by:Timeline
Symbol 49 GraphicUses:39Used by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClipUses:50Used by:Timeline
Symbol 52 GraphicUses:39Used by:53
Symbol 53 MovieClipUses:52Used by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:Timeline
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 TextUses:27Used by:Timeline
Symbol 60 ButtonUses:31 32 33Used by:Timeline
Symbol 61 TextUses:27Used by:Timeline
Symbol 62 TextUses:16 27Used by:Timeline
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:130  Timeline
Symbol 65 TextUses:27Used by:Timeline
Symbol 66 TextUses:27Used by:Timeline
Symbol 67 TextUses:27Used by:Timeline
Symbol 68 TextUses:27Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:77
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:77
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:77
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77
Symbol 77 MovieClipUses:70 72 74 76Used by:78
Symbol 78 MovieClipUses:77Used by:80
Symbol 79 SoundUsed by:80
Symbol 80 MovieClipUses:78 79Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:82Used by:131 135 136 137  Timeline
Symbol 84 ButtonUses:31 32 33Used by:Timeline
Symbol 85 TextUses:27Used by:Timeline
Symbol 86 TextUses:27Used by:Timeline
Symbol 87 TextUses:27Used by:Timeline
Symbol 88 MovieClipUsed by:Timeline
Symbol 89 TextUses:27Used by:Timeline
Symbol 90 GraphicUsed by:105
Symbol 91 GraphicUsed by:105
Symbol 92 GraphicUsed by:105
Symbol 93 GraphicUsed by:105
Symbol 94 GraphicUsed by:105
Symbol 95 GraphicUsed by:105
Symbol 96 GraphicUsed by:105
Symbol 97 GraphicUsed by:105
Symbol 98 GraphicUsed by:105
Symbol 99 GraphicUsed by:105
Symbol 100 GraphicUsed by:105
Symbol 101 GraphicUsed by:105
Symbol 102 GraphicUsed by:105
Symbol 103 GraphicUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:90 91 92 93 94 95 96 97 98 99 100 101 102 103 104Used by:106 141 142 143
Symbol 106 MovieClipUses:105Used by:Timeline
Symbol 107 ButtonUses:31 32 33Used by:Timeline
Symbol 108 GraphicUsed by:109 126
Symbol 109 ButtonUses:108Used by:Timeline
Symbol 110 GraphicUsed by:111 127
Symbol 111 ButtonUses:110Used by:Timeline
Symbol 112 GraphicUsed by:113 128
Symbol 113 ButtonUses:112Used by:Timeline
Symbol 114 TextUses:27Used by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 ButtonUses:115Used by:Timeline
Symbol 117 EditableTextUses:27Used by:Timeline
Symbol 118 EditableTextUses:27Used by:Timeline
Symbol 119 GraphicUsed by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 TextUses:27Used by:Timeline
Symbol 122 EditableTextUses:27Used by:Timeline
Symbol 123 TextUses:27Used by:Timeline
Symbol 124 EditableTextUses:27Used by:Timeline
Symbol 125 TextUses:27Used by:Timeline
Symbol 126 ButtonUses:108Used by:Timeline
Symbol 127 ButtonUses:110Used by:Timeline
Symbol 128 ButtonUses:112Used by:Timeline
Symbol 129 Sound [BLOOP]Used by:130
Symbol 130 MovieClipUses:64 129Used by:Timeline
Symbol 131 MovieClipUses:83Used by:Timeline
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:133Used by:Timeline
Symbol 135 MovieClipUses:83Used by:Timeline
Symbol 136 MovieClipUses:83Used by:Timeline
Symbol 137 MovieClipUses:83Used by:Timeline
Symbol 138 GraphicUses:39Used by:139
Symbol 139 MovieClipUses:138Used by:140
Symbol 140 MovieClipUses:139Used by:Timeline
Symbol 141 MovieClipUses:105Used by:Timeline
Symbol 142 MovieClipUses:105Used by:Timeline
Symbol 143 MovieClipUses:105Used by:Timeline
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:146
Symbol 146 MovieClipUses:145Used by:Timeline
Symbol 147 TextUses:18Used by:148
Symbol 148 MovieClipUses:147Used by:Timeline
Symbol 149 ButtonUses:31 32 33Used by:Timeline
Symbol 150 TextUses:27Used by:153
Symbol 151 TextUses:16Used by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClipUses:150 152Used by:Timeline
Symbol 154 GraphicUsed by:Timeline

Instance Names

"percent"Frame 1Symbol 17 EditableText
"Ball"Frame 6Symbol 130 MovieClip
"fader"Frame 6Symbol 134 MovieClip
"Ball"Frame 8Symbol 130 MovieClip
"portal1"Frame 10Symbol 80 MovieClip
"portal2"Frame 10Symbol 80 MovieClip
"portal2"Frame 11Symbol 80 MovieClip
"portal1"Frame 11Symbol 80 MovieClip
"portal1"Frame 12Symbol 80 MovieClip
"Ball"Frame 13Symbol 130 MovieClip
"portal1"Frame 13Symbol 80 MovieClip
"portal2"Frame 13Symbol 80 MovieClip
"portal1"Frame 16Symbol 80 MovieClip
"portal2"Frame 16Symbol 80 MovieClip
"portal2"Frame 19Symbol 80 MovieClip
"portal1"Frame 19Symbol 80 MovieClip
"portal1"Frame 21Symbol 80 MovieClip
"portal2"Frame 23Symbol 80 MovieClip
"portal1"Frame 23Symbol 80 MovieClip
"portal1"Frame 24Symbol 80 MovieClip
"portal2"Frame 24Symbol 80 MovieClip
"Ball"Frame 26Symbol 130 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "thunk"
ExportAssets (56)Timeline Frame 1Symbol 2 as "die"
ExportAssets (56)Timeline Frame 1Symbol 3 as "opening"
ExportAssets (56)Timeline Frame 1Symbol 4 as "musicloop2"
ExportAssets (56)Timeline Frame 1Symbol 5 as "musicloop1"
ExportAssets (56)Timeline Frame 1Symbol 6 as "ending"
ExportAssets (56)Timeline Frame 6Symbol 129 as "BLOOP"

Labels

"loader"Frame 1
"main"Frame 2
"instructions1"Frame 3
"instructions2"Frame 4
"password"Frame 5
"level1"Frame 6
"level2"Frame 7
"level3"Frame 8
"level4"Frame 9
"level5"Frame 10
"level6"Frame 11
"level7"Frame 12
"level8"Frame 13
"level9"Frame 14
"level10"Frame 15
"level11"Frame 16
"level12"Frame 17
"level13"Frame 18
"level14"Frame 19
"level15"Frame 20
"level16"Frame 21
"level17"Frame 22
"level18"Frame 23
"level19"Frame 24
"level20"Frame 25
"level21"Frame 26
"level22"Frame 27
"credits"Frame 28
"trans"Frame 29
"loaded"Symbol 26 MovieClip Frame 3

Dynamic Text Variables

PercentLoadedSymbol 17 EditableText""
passtxtSymbol 117 EditableText""
passoutSymbol 118 EditableText"Please enter a Password"
levelSymbol 122 EditableText""
passwordSymbol 124 EditableText""




http://swfchan.com/1/1314/info.shtml
Created: 12/8 -2019 08:04:22 Last modified: 12/8 -2019 08:04:22 Server time: 27/04 -2024 05:21:49