-
alpha fadeup
Hi I have a for loop which inserts 12 different movieclips in 12 different positions. Now I call them with this["art"+value] (place them with ["art"+value]._y and ._x) But i want them to fade up as they are placed (I have them placed outside of the movie's area, but once placed I want them to fadeup? They are all set to alpha = 0. Please help!
Mads
-
couldn't you use something like :
Code:
onClipEvent (load) {
this._alpha = 0;
this.onEnterFrame = function() {
if (this._y == whatever && this._alpha<100) {
this._alpha += 5;
} else if (this._alpha>=100) {
delete this.onEnterFrame;
}
};
}
untested.... but just a thought...