Hi there
Im making a meny using attackMovie. I would like to animate the buttons out to their final y coordinate instead of them just popping upp. Here is my as, hope you understand my problem.
this function I call when pressing Artist in the main meny and the buttons attach beneath the Artist button.
function createArtistButtons(){
var i = -1;
while(++i < 6){
ime = “links” + i;
_root.menuArtists.attachMovie(“links”, ime, i);
_root.menuArtists[ime]._y = Yspace * i;
_root.menuArtists[ime].linkNumber.text = count*;
_root.menuArtists[ime].linkText.text = artistsT*;
}
}
as you can see I put out the buttons at their final destination, but I would like to animate them out to that destination using as. Im just a newbie… this is maybe easier than I might think.
Rock hard