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.
this.onRollOver = function() {
if (!isactive) gotoAndStop(2);
}
function deActivate() {
isactive = false;
gotoAndStop(1); // Frame 1 ist der Ruhezustand des Buttons
}
this.onRelease = function() {
this._parent.isactive = this;
gotoAndPlay("active_ani");
}
this.onRollOver = function() {
if (this._parent.isactive != this) gotoAndStop(2);
}
this.onRollOut = this.onReleaseOutside = function() {
if (this._parent.isactive != this) gotoAndStop(3);
}
this.onRelease = function() {
if (this._parent.isactive != this) {
this._parent.isactive.deActivate();
this._parent.isactive = this;
gotoAndStop(4);
}
}
function deActivate() {
gotoAndStop(5);
}
this.useHandCursor = false;
this.onRollOver = function() {
if (this._parent.active != this) gotoAndStop(2);
}
this.onRollOut = this.onReleaseOutside = function() {
if (this._parent.active != this) gotoAndStop(3);
}
this.onRelease = function() {
if (this._parent.active != this) {
this._parent.active.deActivate();
this._parent.active = this;
gotoAndStop(4);
}
}
function deActivate() {
gotoAndStop(5);
}
stop();