ok, i need a bit of help. I have a liquid / fluid /scaling site where on the clients page i have a long list of links. I would like to make them all fall from above the stage into a vertical line using something like this:
function tweenFall(myOption) {
easeType = mx.transitions.easing.Bounce.easeOut;
var begin = -30;
[U]**var end = ????????**[/U]
var time = 3.5;
fallTween = new mx.transitions.Tween(myOption, "_y", easeType, begin, end, time, true);
}
how can i do this with out re-writing the function for each link? so that the first link that falls lands at (Stage.height - 100) and then each one after that lands at some scaleable interval above that?
any help would be greatly appreciated!!