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.
Du meinst ich habe die "iID" vergessen?
function mover( mc, x, y, iID )
{
clearInterval( this[ "MT" + iID ] );
speed = 0.1;
delete mc.onEnterFrame;
mc.xAim = x;
mc.yAim = y;
mc.onEnterFrame = function()
{
this.diffX = Math.abs(this._x-this.xAim)*speed;
this.diffY = Math.abs(this._y-this.yAim)*speed;
if (this._x>this.xAim)
{
this._x -= this.diffX;
}
else if (this._x<this.xAim)
{
this._x += this.diffX;
}
if (this._y>this.yAim)
{
this._y -= this.diffY;
}
else if (this._y<this.yAim)
{
this._y += this.diffY;
}
if (this.diffX<0.1 && this.diffY<0.1)
{
this._x = this.xAim;
this._y = this.yAim;
delete this.onEnterFrame;
}
};
}
on (release) {
mover (_level0.Instanzname, 500, 50, 1);
}
on (release) {
mover (_level0.MCeins, 500, 50);
}