Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dynamic image fade

Status
Not open for further replies.

phatbyte

Programmer
Oct 28, 2003
11
AT
hello folks!

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top