Seediver
Mitglied
Tach auch, ich möchte gerne wissen ob sich ein mc beim bewegungstween faden lässt, ich habe ein bitmap in flash und möchte es gerne bewegen und faden, mit faden ist das kein prob.
on (rollOver) {
var controller = this.createEmptyMovieClip ("fader", 1);
controller.onEnterFrame = function () {
_root.BILD._alpha += 7;
if (_root.BILD._alpha >= 100) {
delete this.onEnterFrame;
}
};
}
on (rollOut) {
var controller = this.createEmptyMovieClip ("fader", 1);
controller.onEnterFrame = function () {
_root.BILD._alpha -= 5;
if (_root.BILD._alpha <= 30) {
delete this.onEnterFrame;
}
};
}
aber sobald ich das tweenen will geht nichts mehr.
Hat jemand mal was in der art gemacht und kann mir weiter helfen ?
vielen Dank
on (rollOver) {
var controller = this.createEmptyMovieClip ("fader", 1);
controller.onEnterFrame = function () {
_root.BILD._alpha += 7;
if (_root.BILD._alpha >= 100) {
delete this.onEnterFrame;
}
};
}
on (rollOut) {
var controller = this.createEmptyMovieClip ("fader", 1);
controller.onEnterFrame = function () {
_root.BILD._alpha -= 5;
if (_root.BILD._alpha <= 30) {
delete this.onEnterFrame;
}
};
}
aber sobald ich das tweenen will geht nichts mehr.
Hat jemand mal was in der art gemacht und kann mir weiter helfen ?
vielen Dank