Is there an actionscript to make text scroll up like movie credits?
Printable View
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:
Frame2:Code:setProperty (_root.textmc, _y, _root.textmc._y-5);
Where textmc is a movie clip instance (named in the timeline as textmc) with your text in it.Code:gotoAndPlay (1);
U can change the speed by replacing the 5.
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
Set a higher framerate in your movie and use 1 or 2 instead of 5.Quote:
Originally posted by mvinal16
thanks for the code. . . . is there a way to make it scroll smoother?