Frame 1
function steuerung() {
if (Key.isDown(40)) {
ball.ymove = ball.ymove + ball.speed;
}
if (Key.isDown(37)) {
ball.xmove = ball.xmove + ((-ball.speed) * 1.8);
}
if (Key.isDown(39)) {
ball.xmove = ball.xmove + (ball.speed * 1.8);
}
if (Key.isDown(38)) {
ball.ymove = ball.ymove + (-ball.speed);
}
if (Key.isDown(32)) {
}
}
function ballmover() {
if (!levelDone) {
_root.Ball.xmove = int((_root.Ball.xmove / 1.01) * 100) / 100;
_root.Ball.ymove = int((_root.Ball.ymove / 1.01) * 100) / 100;
}
}
function moveDownRight() {
_root.Ball.xmove = _root.Ball.xmove + 0.1;
_root.Ball.ymove = _root.Ball.ymove + 0.14;
}
function moveDownLeft() {
_root.Ball.xmove = _root.Ball.xmove - 0.1;
_root.Ball.ymove = _root.Ball.ymove + 0.11;
}
function ballAway() {
if (((!_root.falling) && (!_root.levelDone)) && (!_root.gameOver)) {
_root.ball._visible = false;
_root.ball.stop();
attachMovie("mcFall", "mcFall", 2);
mcFall._x = Ball._x;
mcFall._y = Ball._y;
_root.falling = true;
loseLife();
_root.ball.play();
}
}
function ball_sprung() {
Ball.sprungzaehler--;
Ball.Kugel._y = Ball.Kugel._y - (Math.sin(ball.sprung) * 10);
Ball.sprung = Ball.sprung + 0.2;
}
function platten() {
_root.ball_stuck = 0;
_root.sprung_ausgefuehrt = 0;
}
function ende() {
if (!_root.gameOver) {
ergebnis.gotoAndPlay("loser");
_root.gameOver = true;
}
}
function hiScore() {
gotoAndStop (10);
}
function loseLife() {
if (1 < totalLives) {
mcLives.gotoAndStop(totalLives);
totalLives--;
} else {
mcLives.gotoAndStop(1);
ende();
}
}
_root.gameOver = false;
totalLives = 5;
Ball.Kugel.xgroesse = Ball.Kugel.dank._width;
Ball.Kugel.ygroesse = Ball.Kugel.dank._height;
Ball.Kugel.xpos = Ball.Kugel.dank._x;
Ball.Kugel.ypos = Ball.Kugel.dank._y;
_quality = "HIGH";
stop();
Frame 2
_root.levelDone = false;
_root.currentLevel = 1;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
Ball.sprung = 0;
Ball.Kugel.xgroesse = Ball.Kugel._width;
Ball.Kugel.ygroesse = Ball.Kugel._height;
Ball.Kugel.xpos = Ball.Kugel._x;
Ball.Kugel.ypos = Ball.Kugel._y;
punkte = 0;
stop();
Instance of Symbol 35 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 35 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 55 MovieClip "sdfgdfg" in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 35 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "ball" in Frame 2
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 2
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 2
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 3
_root.levelDone = false;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
_root.currentLevel = 2;
stop();
Instance of Symbol 115 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 35 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 119 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 3
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 3
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 3
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 4
_root.levelDone = false;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
_root.currentLevel = 3;
stop();
Instance of Symbol 71 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 4
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 4
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 4
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 5
_root.levelDone = false;
_root.currentLevel = 4;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
stop();
Instance of Symbol 35 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 133 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 1;
_root.ball.ymove = _root.ball.ymove + 1;
}
}
Instance of Symbol 138 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 138 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 141 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 133 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 1;
_root.ball.ymove = _root.ball.ymove + 1;
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 141 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 43 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 35 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 5
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 5
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 5
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 6
_root.levelDone = false;
_root.currentLevel = 5;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
Ball.sprung = 0;
Ball.Kugel.xgroesse = Ball.Kugel._width;
Ball.Kugel.ygroesse = Ball.Kugel._height;
Ball.Kugel.xpos = Ball.Kugel._x;
Ball.Kugel.ypos = Ball.Kugel._y;
stop();
Instance of Symbol 141 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 144 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 2;
_root.ball.ymove = _root.ball.ymove + 1;
}
}
Instance of Symbol 144 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 2;
_root.ball.ymove = _root.ball.ymove + 1;
}
}
Instance of Symbol 144 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 2;
_root.ball.ymove = _root.ball.ymove + 1;
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 127 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 2;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 127 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 2;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 127 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 2;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 147 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 150 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 155 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 6
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 6
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 6
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 7
_root.levelDone = false;
_root.currentLevel = 6;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
stop();
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 160 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 138 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 163 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 127 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 2;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 7
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 71 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 7
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 7
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 8
_root.levelDone = false;
_root.currentLevel = 7;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
Ball.sprung = 0;
Ball.Kugel.xgroesse = Ball.Kugel._width;
Ball.Kugel.ygroesse = Ball.Kugel._height;
Ball.Kugel.xpos = Ball.Kugel._x;
Ball.Kugel.ypos = Ball.Kugel._y;
stop();
Instance of Symbol 39 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 163 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 147 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.ball_stuck = 0;
}
}
Instance of Symbol 115 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 124 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 163 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.ball_stuck = 0;
}
}
Instance of Symbol 147 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.ball_stuck = 0;
}
}
Instance of Symbol 147 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.ball_stuck = 0;
}
}
Instance of Symbol 47 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.ball_stuck = 0;
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 71 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 8
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 8
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 8
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 9
_root.levelDone = false;
_root.currentLevel = 8;
_root.ergebnis.moment = getTimer();
_root.ergebnis.timer = 0;
Ball.sprung = 0;
Ball.Kugel.xgroesse = Ball.Kugel._width;
Ball.Kugel.ygroesse = Ball.Kugel._height;
Ball.Kugel.xpos = Ball.Kugel._x;
Ball.Kugel.ypos = Ball.Kugel._y;
stop();
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 163 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 115 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove + 2;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 71 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) && (!_root.levelDone)) {
_root.platten();
_root.ball._visible = 0;
_root.ball.gotoAndPlay("done");
play();
}
}
Instance of Symbol 74 MovieClip "Ball" in Frame 9
onClipEvent (load) {
speed = 0.15;
_root.ball_stuck = 0;
_root.ball_startx = this._x;
_root.ball_starty = this._y;
}
onClipEvent (enterFrame) {
_root.steuerung();
if (_root.ball_stuck == "1") {
_root.ballAway();
}
_root.ball_stuck = 1;
this._x = this._x + xmove;
this._y = this._y + ymove;
_root.ballmover();
if (0 < sprungzaehler) {
_root.ball_sprung();
} else {
sprung = 0;
this.Kugel._width = Kugel.xgroesse;
this.Kugel._height = Kugel.ygroesse;
this.Kugel._x = Kugel.xpos;
this.Kugel._y = Kugel.ypos;
}
}
Instance of Symbol 104 MovieClip "ergebnis" in Frame 9
onClipEvent (load) {
_parent.txtLevel = _root.currentLevel;
}
onClipEvent (enterFrame) {
if (!_root.levelDone) {
timer = int(60 - ((getTimer() - moment) / 1000));
txtTimer = timer;
if (timer < 1) {
_root.totalLives = 0;
_root.ballAway();
} else if (timer == 5) {
mcTimerBg.play();
}
}
}
Instance of Symbol 112 MovieClip "mcLives" in Frame 9
onClipEvent (load) {
this.gotoAndStop(_root.totalLives + 1);
}
Frame 10
Ball.xmove = 6;
Ball.ymove = -3;
Ball.sprung = 0;
Ball.Kugel.xgroesse = Ball.Kugel._width;
Ball.Kugel.ygroesse = Ball.Kugel._height;
Ball.Kugel.xpos = Ball.Kugel._x;
Ball.Kugel.ypos = Ball.Kugel._y;
score = _root.punkte;
stop();
Symbol 4 MovieClip [mcFall] Frame 20
stop();
Symbol 13 Button
on (release) {
gotoAndStop (2);
}
Symbol 17 Button
on (release) {
getURL ("http://www.miniclip.com", "_blank");
}
Symbol 21 Button
on (release) {
getURL ("http://www.miniclip.com/signup2.htm", "_blank");
}
Symbol 23 Button
on (release) {
getURL ("http://www.miniclip.com/Downloads.htm", "_blank");
}
Symbol 26 Button
on (release) {
getURL ("http://www.miniclip.com", "_blank");
}
Symbol 30 MovieClip Frame 1
stop();
Symbol 61 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 7
gotoAndPlay (1);
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 2
_root.levelDone = true;
Symbol 71 MovieClip Frame 43
_root.ergebnis.gotoAndPlay("erfolg");
stop();
Symbol 74 MovieClip Frame 1
_visible = true;
if (!_root.gameOver) {
play();
} else {
this._visible = false;
}
Symbol 74 MovieClip Frame 10
_root.falling = false;
stop();
Symbol 74 MovieClip Frame 34
this._x = _root.ball_startx;
this._y = _root.ball_starty;
this.xmove = 0;
this.ymove = 0;
_root.falling = false;
gotoAndStop (1);
Symbol 85 MovieClip Frame 1
stop();
Symbol 85 MovieClip Frame 10
if (!_root.levelDone) {
gotoAndPlay (2);
} else {
gotoAndStop (1);
}
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 15
mcTimerBg.gotoAndStop(1);
Symbol 104 MovieClip Frame 20
txtLevel = _root.currentLevel;
txtScore = _root.punkte;
Symbol 104 MovieClip Frame 30
txtBonus = timer;
_root.punkte = _root.punkte + timer;
txtScore = _root.punkte;
Symbol 104 MovieClip Frame 43
txtBall = _root.totalLives * 10;
_root.punkte = _root.punkte + (_root.totalLives * 10);
txtScore = _root.punkte;
Symbol 104 MovieClip Frame 127
_root.play();
Symbol 104 MovieClip Frame 150
txtScore = _root.punkte;
play();
Symbol 104 MovieClip Frame 244
_root.hiScore();
stop();
Instance of Symbol 35 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 39 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 47 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownRight();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 124 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
if (this._x < _root.ball._x) {
_root.ball.xmove = _root.ball.xmove + 0.2;
}
if (_root.ball._x < this._x) {
_root.ball.xmove = _root.ball.xmove - 0.2;
}
if (this._y < _root.ball._y) {
_root.ball.ymove = _root.ball.ymove + 0.2;
}
if (_root.ball._y < this._y) {
_root.ball.ymove = _root.ball.ymove - 0.2;
}
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 51 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true)) {
_root.moveDownLeft();
_root.platten();
}
}
Instance of Symbol 43 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
}
}
Instance of Symbol 127 MovieClip in Symbol 128 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hit.hitTest(_root.Ball._x, _root.Ball._y, true) == true) {
_root.platten();
_root.ball.xmove = _root.ball.xmove - 1;
_root.ball.ymove = _root.ball.ymove - 1;
}
}
Symbol 167 Button
on (release) {
getURL ("http://www.miniclip.com/gyroball.htm", "_blank");
}
Symbol 169 Button
on (release) {
gotoAndStop (1);
}