Is there an actionscript to make text scroll up like movie credits?
I dont thinks so, but you can control that with your motion tween.
A very simple one is this: Frame1: Code: setProperty (_root.textmc, _y, _root.textmc._y-5); Frame2: Code: gotoAndPlay (1); Where textmc is a movie clip instance (named in the timeline as textmc) with your text in it. U can change the speed by replacing the 5.
setProperty (_root.textmc, _y, _root.textmc._y-5);
gotoAndPlay (1);
thanks for the code. . . . is there a way to make it scroll smoother?
just convert all your text to a Movie Clip and have it move up the page with motion tweens, its that easy
Originally posted by mvinal16 thanks for the code. . . . is there a way to make it scroll smoother? Set a higher framerate in your movie and use 1 or 2 instead of 5.
Forum Rules