i want navigation bars that kind of slide and bounce back into place. i have the code of it and it works great. but now i want them to bounce in after eachother, not all at the same time?
right now i have the code for each movie clip on separate keyframes so they load up after each other, but i would like to have all the script on one frame.
what code do i add to make it bounce in one after the other without having to but the individual movie clip codes on separate keyframes?
heres what i have now:
import gs.TweenMax;
import fl.motion.easing.*
TweenMax.to(home, 1, {x:1, y:1, ease:Bounce.easeOut});
import gs.TweenMax;
import fl.motion.easing.*
TweenMax.to(about, 1, {x:1, y:22.6, ease:Bounce.easeOut});
and so on… any help is appreciated! thanks