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) {
}
onClipEvent (enterFrame) {
for (i=0; i<=_root.theCounter.Count; i++) {
for (j=0; j<=_root.LCount; j++) {
if (_root['Asteroid'+i].hitTest(_root['Laser'+j])) {
_root.Score += 5;
_root['Laser'+j].removeMovieClip();
_root['Asteroid'+i].removeMovieClip();
}
}
}
for (i=0; i<=_root.theCounter.Count; i++) {
for (j=0; j<=_root.RCount; j++) {
if (_root['Asteroid'+i].hitTest(_root['Missile'+j])) {
_root.Score += 5;
_root['Missile'+j].removeMovieClip();
_root['Asteroid'+i].removeMovieClip();
}
}
}
}
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_name == "Asteroid") {
//do nothing
} else {
_rotation += _root.Rotate;
_x += _root.Speed;
_y -= (_y-_root.Spaceship._y)/_root.Step;
if (_x>Stage.width+_width) {
removeMovieClip(this);
}
if (this.hitTest(_root.Spaceship)) {
_root.nextFrame();
_root.theCounter.remove(this._parent.theCounter.num);
}
}
}