hi,
i would like to have a list being appeared in wich the items appear gradually one by one.
generating the list isn’t a problem, but letting the items fade in after each other ???
in a later fase these item would become button for in a menu.
:q:
i included the file, maybe some one can let it work.
my current code, probably a mess:
title = new Array(“house DC”,“residence GRK”,“offices J”,“youth hostel”,“house VDV”,“concordia”);
var fadespeed=“10”;
dupMovie = function () {
for (i=0; i<title.length; i++) {
option.duplicateMovieClip(“option”+i, i);
setProperty("option"+i,_y,option._y+(12*i));
// setProperty("option"+i".sub",text,option._y+(12*i));
this["option"+i].sub.text=title*;
this["option"+i]._alpha=0;
if(i==title.length){
// this.onEnterFrame = fadeoptions(1);
}
}
};
dupMovie();
MovieClip.prototype.fadeoptions = function(j) {
this[“option”+j]._alpha += this.fadeSpeed;
if(this["option"+j]._alpha=="60" && j<=title.length){
this.onEnterFrame = fadeoptions(j+1);
}
};