hello folks!
i need to fade some dynamic images one after the other in.. how i do this?
thanks in advance!
oliver
i need to fade some dynamic images one after the other in.. how i do this?
Code:
this.imgs = ['oks.jpg','oks2.jpg'];
var x = 0;
var y = 0;
var i;
for (i in imgs) {
var t = this.createEmptyMovieClip ("thumbnail" + i, i);
var c = t.createEmptyMovieClip ("picHolder", 0);
var thumb = imgs[i];
c.loadMovie (thumb);
c._x = x + (80 * i);
c._y = y;
c._alpha = 80;
}
thanks in advance!
oliver