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.
meinMovieClip.ton_init("loop1.mp3");
onClipEvent (enterFrame) {
laufen(480, 50, 295, 279, 0.8, 0.5, 1.75,_y/36);
if ((this._x>=183.8)&&(this._y>=315.4)&&(Key.isDown(key.SPACE))) {
this.gotoAndPlay(1);
tonstart();
} else if((this._x>=460.7)&&(this._y>=296.4)&&(Key.isDown(key.SPACE))) {
this.gotoAndPlay(4);
tonstart();
}
MovieClip.prototype.ton_init = function(Creepy) {
this.sound = new Sound(this);
this.sound.attachSound(Creepy);
}
MovieClip.prototype.tonstart = function() {
this.sound.start();
friedhofClip.ton_init("Creepy.wav");
}
}