Hab folgendes AS, da funktioniert der RollOver nicht, aber der release schon.
Was hab ich falsch gemacht?
Code:
stop();
for (i=0; i<5; i++) {
this["bt"+i].i = i;
this["bt"+i].onRollOver = function() {
this.onEnterFrame = function() {
if (this._currentframe>=7) {
delete this.onEnterFrame;
} else {
this.nextFrame();
}
};
};
this["bt"+i].onRollOver = function() {
this.onEnterFrame = function() {
if (this._currentframe<=1) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
this["bt"+i].onRelease = function() {
mcbg.gotoAndPlay(229);
};
} danke,
voo