Hallo,
es geht tatsächlich einfacher
Lege dieses Script auf dem ersten Schlüsselbild ab:
Das wars eigentlich schon, funktioniert aber nur, wenn alle Grafiken auf der Hauptzeitleiste liegen. Ansonsten muss du es dir anpassen, was die einzelne Befehle genau machen, dafür schmeisse mal einen Blick in die HilfePHP-Code:stop ();
function vor () {
if (this._currentframe < this._totalframes) {
this.nextFrame ();
} else {
gotoAndStop (1);
}
}
function zur () {
if (this._currentframe > 1) {
this.prevFrame ();
} else {
this.gotoAndStop (this._totalframes);
}
}
btn_next.onRelease = function () {
_root.vor ();
};
btn_prev.onRelease = function () {
_root.zur ();
};
![]()


LinkBack URL
About LinkBacks
Zitieren
