Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
onClipEvent (load) {
// einstellen der geschwindigkeit
speed = 5;
meineVergroesserung = 20;
torten_textfeld.text = torten;
torten = 4;
}
onClipEvent (enterFrame) {
// bewege up, down, left, oder right
if (Key.isDown(Key.LEFT) && !Key.isDown(Key.RIGHT)) {
if (_root.fliege, hittest(_root.wandlinks)) {
// nix
} else {
_x -= speed;
_rotation = 0;
}
}
if (Key.isDown(Key.RIGHT) && !Key.isDown(Key.LEFT)) {
if (_root.fliege, hittest(_root.wandrechts)) {
// nix
} else {
_x += speed;
_rotation = 0;
}
}
if (Key.isDown(Key.UP) && !Key.isDown(Key.DOWN)) {
if (_y<112) {
_y = 120;
} else {
_y -= speed;
_rotation = 0;
}
}
if (Key.isDown(Key.DOWN) && !Key.isDown(Key.UP)) {
if (_root.fliege, hittest(_root.wandunten)) {
// nix
} else {
_y += speed;
_rotation = 0;
}
}
// fisch frisst fliege
if (_root.fliege, hittest(_root.torte1)) {
_root.torte1._visible = false;
_root.torte1._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten = torten -1;
}
if (_root.fliege, hittest(_root.torte2)) {
_root.torte2._visible = false;
_root.torte2._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten = torten -1;
}
if (_root.fliege, hittest(_root.torte3)) {
_root.torte3._visible = false;
_root.torte3._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten = torten -1;
}
if (_root.fliege, hittest(_root.torte4)) {
_root.torte4._visible = false;
_root.torte4._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
_root.torte4.removeMovieclip();
torten = torten -1;
}
}
onClipEvent (load) {
// einstellen der geschwindigkeit
speed = 5;
meineVergroesserung = 20;
torten_textfeld.text = torten;
torten = 4;
}
onClipEvent (enterFrame) {
// bewege up, down, left, oder right
if (Key.isDown(Key.LEFT) && !Key.isDown(Key.RIGHT)) {
if (_root.fliege.hittest(_root.wandlinks)) {
// nix
} else {
_x -= speed;
_rotation = 0;
}
}
if (Key.isDown(Key.RIGHT) && !Key.isDown(Key.LEFT)) {
if (_root.fliege.hittest(_root.wandrechts)) {
// nix
} else {
_x += speed;
_rotation = 0;
}
}
if (Key.isDown(Key.UP) && !Key.isDown(Key.DOWN)) {
if (_y<112) {
_y = 120;
} else {
_y -= speed;
_rotation = 0;
}
}
if (Key.isDown(Key.DOWN) && !Key.isDown(Key.UP)) {
if (_root.fliege.hittest(_root.wandunten)) {
// nix
} else {
_y += speed;
_rotation = 0;
}
}
// fliege frißt torten
if (_root.fliege.hittest(_root.torte1)) {
_root.torte1._visible = false;
_root.torte1._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten -= 1;
}
if (_root.fliege.hittest(_root.torte2)) {
_root.torte2._visible = false;
_root.torte2._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten -= 1;
}
if (_root.fliege.hittest(_root.torte3)) {
_root.torte3._visible = false;
_root.torte3._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten -= 1;
}
if (_root.fliege.hittest(_root.torte4)) {
_root.torte4._visible = false;
_root.torte4._y = -1000;
_root.fliege._xscale *= 1.2;
_root.fliege._yscale *= 1,2;
torten -= 1;
}
}