Zeitleiste Rückwärts abspielen.

Hallo,

deine Weiterleitung musst du dort einbauen, wo der Loop gelöscht ergo die Animation beendet ist. Das ist in diesem Fall bei der Anweisung "delete onEnterFrame".

Gruss
 
ok. also wie sieht des dann aus

PHP:
on (release) { 
    this.onEnterFrame = function() { 
        if (this._currentframe > 263) { 
            gotoAndStop(_currentframe - 1); 
        } else { 
            delete this.onEnterFrame; 
        } 
    }
}

muss es dann so heissen?
PHP:
on (release) { 
    this.onEnterFrame = function() { 
        if (this._currentframe > 263) { 
            gotoAndStop(_currentframe - 1); 
        } else { 
            delete this.onEnterFrame; 
        } 
        gotoAndPlay("bildmarke");
    }
}


bin jetzt net so der programmierheld ;)
 
Hallo,

nein, so:
Code:
on (release) { 
    this.onEnterFrame = function() { 
        if (this._currentframe > 263) { 
            gotoAndStop(_currentframe - 1); 
        } else { 
            delete this.onEnterFrame; 
            gotoAndPlay("bildmarke");
        } 
    }
}

Gruss
 
Hallo,

nein, so:

Code:
on (release) { 
    this.onEnterFrame = function() { 
        if (this._currentframe > 263) { 
            gotoAndStop(_currentframe - 1); 
        } else { 
            delete this.onEnterFrame; 
            gotoAndPlay("bildmarke");
        } 
    }
}

Gruss
 

Neue Beiträge

Zurück