STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229490 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #1314 |
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 1Stage.showMenu = false;Frame 2stopAllSounds(); mysound = new Sound(); mysound.attachSound("opening"); complete = false; mysound.start(0, 65583); playing = true; level = 1; password = none; playing = false;Frame 6mysound = 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 6onClipEvent (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 7mysound = 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 8mysound = 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 8onClipEvent (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 9mysound = 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 10mysound = 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 10onClipEvent (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 10onClipEvent (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 11mysound = 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 11onClipEvent (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 11onClipEvent (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 12mysound = 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 12onClipEvent (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 13mysound = 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 13onClipEvent (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 13onClipEvent (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 13onClipEvent (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 14mysound = 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 15mysound = 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 16mysound = 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 16onClipEvent (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 16onClipEvent (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 17mysound = 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 18mysound = 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 19mysound = 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 19onClipEvent (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 19onClipEvent (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 20mysound = 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 21mysound = 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 21onClipEvent (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 22mysound = 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 23mysound = 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 23onClipEvent (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 23onClipEvent (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 24mysound = 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 24onClipEvent (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 24onClipEvent (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 25mysound = 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 26mysound = 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 26onClipEvent (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 27mysound = 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 28stopAllSounds(); mysound = new Sound(); mysound.attachSound("ending"); mysound.start(0, 65583); playing = true; stop();Frame 29gotoAndPlay(nextLevel);Symbol 25 Buttonon (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 2gotoAndPlay (1);Symbol 34 Buttonon (release) { gotoAndStop ("level1"); stopAllSounds(); }Symbol 35 Buttonon (release) { gotoAndStop ("password"); }Symbol 36 Buttonon (release) { gotoAndStop ("instructions1"); }Instance of Symbol 41 MovieClip in Symbol 42 MovieClip Frame 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 Buttonon (release) { gotoAndStop ("credits"); }Symbol 80 MovieClip Frame 1stop();Instance of Symbol 78 MovieClip in Symbol 80 MovieClip Frame 1onClipEvent (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 2gotoAndStop (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 Buttonon (release) { gotoAndStop ("instructions2"); }Instance of Symbol 105 MovieClip in Symbol 106 MovieClip Frame 1onClipEvent (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 Buttonon (release) { gotoAndStop ("main"); }Symbol 116 Buttonon (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 Buttonon (release) { if (_root.playing == false) { _root.mysound.start(0, 65583); _root.playing = true; manual = true; } }Symbol 127 Buttonon (release) { if (_root.playing == true) { _root.mysound.stop("musicloop2"); playing = false; manual = false; } }Symbol 128 Buttonon (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 1stop();Symbol 130 MovieClip Frame 2stop();Symbol 130 MovieClip Frame 3stop();Symbol 130 MovieClip Frame 4stop();Symbol 131 MovieClip Frame 1stop();Instance of Symbol 83 MovieClip in Symbol 131 MovieClip Frame 1onClipEvent (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 40onClipEvent (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 1password = _root.password; level = _root.level;Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 2onClipEvent (enterFrame) { level = root.level; password = _root.password; }Instance of Symbol 133 MovieClip in Symbol 134 MovieClip Frame 12onClipEvent (enterFrame) { level = root.level; password = _root.password; }Symbol 134 MovieClip Frame 31stop();Symbol 135 MovieClip Frame 1stop();Instance of Symbol 83 MovieClip in Symbol 135 MovieClip Frame 1onClipEvent (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 40onClipEvent (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 1stop();Instance of Symbol 83 MovieClip in Symbol 136 MovieClip Frame 1onClipEvent (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 40onClipEvent (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 1stop();Instance of Symbol 83 MovieClip in Symbol 137 MovieClip Frame 1onClipEvent (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 40onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (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 Buttonon (release) { gotoAndStop ("main"); }Symbol 153 MovieClip Frame 460stop();
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 Graphic | Used by:10 | |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip | Uses:8 | Used by:10 |
Symbol 10 MovieClip | Uses:7 9 | Used by:15 |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:11 | Used by:15 |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:15 |
Symbol 15 MovieClip | Uses:10 12 14 | Used by:Timeline |
Symbol 16 Font | Used by:17 62 151 | |
Symbol 17 EditableText | Uses:16 | Used by:Timeline |
Symbol 18 Font | Used by:19 147 | |
Symbol 19 Text | Uses:18 | Used by:20 |
Symbol 20 MovieClip | Uses:19 | Used by:Timeline |
Symbol 21 Graphic | Used by:25 | |
Symbol 22 Graphic | Used by:25 | |
Symbol 23 Graphic | Used by:25 | |
Symbol 24 Graphic | Used by:25 | |
Symbol 25 Button | Uses:21 22 23 24 | Used by:26 |
Symbol 26 MovieClip | Uses:25 | Used by:Timeline |
Symbol 27 Font | Used 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 Text | Uses:27 | Used by:Timeline |
Symbol 29 Text | Uses:27 | Used by:Timeline |
Symbol 30 Text | Uses:27 | Used by:Timeline |
Symbol 31 Graphic | Used by:34 35 36 60 84 107 149 | |
Symbol 32 Graphic | Used by:34 35 36 60 84 107 149 | |
Symbol 33 Graphic | Used by:34 35 36 60 84 107 149 | |
Symbol 34 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 35 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 36 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 37 Text | Uses:27 | Used by:Timeline |
Symbol 38 Text | Uses:27 | Used by:Timeline |
Symbol 39 Bitmap | Used by:40 43 46 49 52 138 | |
Symbol 40 Graphic | Uses:39 | Used by:41 |
Symbol 41 MovieClip | Uses:40 | Used by:42 |
Symbol 42 MovieClip | Uses:41 | Used by:Timeline |
Symbol 43 Graphic | Uses:39 | Used by:44 |
Symbol 44 MovieClip | Uses:43 | Used by:45 |
Symbol 45 MovieClip | Uses:44 | Used by:Timeline |
Symbol 46 Graphic | Uses:39 | Used by:47 |
Symbol 47 MovieClip | Uses:46 | Used by:48 |
Symbol 48 MovieClip | Uses:47 | Used by:Timeline |
Symbol 49 Graphic | Uses:39 | Used by:50 |
Symbol 50 MovieClip | Uses:49 | Used by:51 |
Symbol 51 MovieClip | Uses:50 | Used by:Timeline |
Symbol 52 Graphic | Uses:39 | Used by:53 |
Symbol 53 MovieClip | Uses:52 | Used by:54 |
Symbol 54 MovieClip | Uses:53 | Used by:Timeline |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip | Uses:55 | Used by:Timeline |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 MovieClip | Uses:57 | Used by:Timeline |
Symbol 59 Text | Uses:27 | Used by:Timeline |
Symbol 60 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 61 Text | Uses:27 | Used by:Timeline |
Symbol 62 Text | Uses:16 27 | Used by:Timeline |
Symbol 63 Graphic | Used by:64 | |
Symbol 64 MovieClip | Uses:63 | Used by:130 Timeline |
Symbol 65 Text | Uses:27 | Used by:Timeline |
Symbol 66 Text | Uses:27 | Used by:Timeline |
Symbol 67 Text | Uses:27 | Used by:Timeline |
Symbol 68 Text | Uses:27 | Used by:Timeline |
Symbol 69 Graphic | Used by:70 | |
Symbol 70 MovieClip | Uses:69 | Used by:77 |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 MovieClip | Uses:71 | Used by:77 |
Symbol 73 Graphic | Used by:74 | |
Symbol 74 MovieClip | Uses:73 | Used by:77 |
Symbol 75 Graphic | Used by:76 | |
Symbol 76 MovieClip | Uses:75 | Used by:77 |
Symbol 77 MovieClip | Uses:70 72 74 76 | Used by:78 |
Symbol 78 MovieClip | Uses:77 | Used by:80 |
Symbol 79 Sound | Used by:80 | |
Symbol 80 MovieClip | Uses:78 79 | Used by:Timeline |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 MovieClip | Uses:81 | Used by:83 |
Symbol 83 MovieClip | Uses:82 | Used by:131 135 136 137 Timeline |
Symbol 84 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 85 Text | Uses:27 | Used by:Timeline |
Symbol 86 Text | Uses:27 | Used by:Timeline |
Symbol 87 Text | Uses:27 | Used by:Timeline |
Symbol 88 MovieClip | Used by:Timeline | |
Symbol 89 Text | Uses:27 | Used by:Timeline |
Symbol 90 Graphic | Used by:105 | |
Symbol 91 Graphic | Used by:105 | |
Symbol 92 Graphic | Used by:105 | |
Symbol 93 Graphic | Used by:105 | |
Symbol 94 Graphic | Used by:105 | |
Symbol 95 Graphic | Used by:105 | |
Symbol 96 Graphic | Used by:105 | |
Symbol 97 Graphic | Used by:105 | |
Symbol 98 Graphic | Used by:105 | |
Symbol 99 Graphic | Used by:105 | |
Symbol 100 Graphic | Used by:105 | |
Symbol 101 Graphic | Used by:105 | |
Symbol 102 Graphic | Used by:105 | |
Symbol 103 Graphic | Used by:105 | |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip | Uses:90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | Used by:106 141 142 143 |
Symbol 106 MovieClip | Uses:105 | Used by:Timeline |
Symbol 107 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 108 Graphic | Used by:109 126 | |
Symbol 109 Button | Uses:108 | Used by:Timeline |
Symbol 110 Graphic | Used by:111 127 | |
Symbol 111 Button | Uses:110 | Used by:Timeline |
Symbol 112 Graphic | Used by:113 128 | |
Symbol 113 Button | Uses:112 | Used by:Timeline |
Symbol 114 Text | Uses:27 | Used by:Timeline |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 Button | Uses:115 | Used by:Timeline |
Symbol 117 EditableText | Uses:27 | Used by:Timeline |
Symbol 118 EditableText | Uses:27 | Used by:Timeline |
Symbol 119 Graphic | Used by:Timeline | |
Symbol 120 Graphic | Used by:Timeline | |
Symbol 121 Text | Uses:27 | Used by:Timeline |
Symbol 122 EditableText | Uses:27 | Used by:Timeline |
Symbol 123 Text | Uses:27 | Used by:Timeline |
Symbol 124 EditableText | Uses:27 | Used by:Timeline |
Symbol 125 Text | Uses:27 | Used by:Timeline |
Symbol 126 Button | Uses:108 | Used by:Timeline |
Symbol 127 Button | Uses:110 | Used by:Timeline |
Symbol 128 Button | Uses:112 | Used by:Timeline |
Symbol 129 Sound [BLOOP] | Used by:130 | |
Symbol 130 MovieClip | Uses:64 129 | Used by:Timeline |
Symbol 131 MovieClip | Uses:83 | Used by:Timeline |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip | Uses:132 | Used by:134 |
Symbol 134 MovieClip | Uses:133 | Used by:Timeline |
Symbol 135 MovieClip | Uses:83 | Used by:Timeline |
Symbol 136 MovieClip | Uses:83 | Used by:Timeline |
Symbol 137 MovieClip | Uses:83 | Used by:Timeline |
Symbol 138 Graphic | Uses:39 | Used by:139 |
Symbol 139 MovieClip | Uses:138 | Used by:140 |
Symbol 140 MovieClip | Uses:139 | Used by:Timeline |
Symbol 141 MovieClip | Uses:105 | Used by:Timeline |
Symbol 142 MovieClip | Uses:105 | Used by:Timeline |
Symbol 143 MovieClip | Uses:105 | Used by:Timeline |
Symbol 144 Graphic | Used by:145 | |
Symbol 145 MovieClip | Uses:144 | Used by:146 |
Symbol 146 MovieClip | Uses:145 | Used by:Timeline |
Symbol 147 Text | Uses:18 | Used by:148 |
Symbol 148 MovieClip | Uses:147 | Used by:Timeline |
Symbol 149 Button | Uses:31 32 33 | Used by:Timeline |
Symbol 150 Text | Uses:27 | Used by:153 |
Symbol 151 Text | Uses:16 | Used by:152 |
Symbol 152 MovieClip | Uses:151 | Used by:153 |
Symbol 153 MovieClip | Uses:150 152 | Used by:Timeline |
Symbol 154 Graphic | Used by:Timeline |
Instance Names
"percent" | Frame 1 | Symbol 17 EditableText |
"Ball" | Frame 6 | Symbol 130 MovieClip |
"fader" | Frame 6 | Symbol 134 MovieClip |
"Ball" | Frame 8 | Symbol 130 MovieClip |
"portal1" | Frame 10 | Symbol 80 MovieClip |
"portal2" | Frame 10 | Symbol 80 MovieClip |
"portal2" | Frame 11 | Symbol 80 MovieClip |
"portal1" | Frame 11 | Symbol 80 MovieClip |
"portal1" | Frame 12 | Symbol 80 MovieClip |
"Ball" | Frame 13 | Symbol 130 MovieClip |
"portal1" | Frame 13 | Symbol 80 MovieClip |
"portal2" | Frame 13 | Symbol 80 MovieClip |
"portal1" | Frame 16 | Symbol 80 MovieClip |
"portal2" | Frame 16 | Symbol 80 MovieClip |
"portal2" | Frame 19 | Symbol 80 MovieClip |
"portal1" | Frame 19 | Symbol 80 MovieClip |
"portal1" | Frame 21 | Symbol 80 MovieClip |
"portal2" | Frame 23 | Symbol 80 MovieClip |
"portal1" | Frame 23 | Symbol 80 MovieClip |
"portal1" | Frame 24 | Symbol 80 MovieClip |
"portal2" | Frame 24 | Symbol 80 MovieClip |
"Ball" | Frame 26 | Symbol 130 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "thunk" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "die" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "opening" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "musicloop2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "musicloop1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "ending" |
ExportAssets (56) | Timeline Frame 6 | Symbol 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
PercentLoaded | Symbol 17 EditableText | "" |
passtxt | Symbol 117 EditableText | "" |
passout | Symbol 118 EditableText | "Please enter a Password" |
level | Symbol 122 EditableText | "" |
password | Symbol 124 EditableText | "" |
|