Skip to content
Forum Archive

Scroll $(title)

7 posts

snoozin_hermit#

Scroll $(title)

In render/text when you use $(title) is there a way to use a movement or dm to make it scroll across page ?? If there is...How and is there a way to make it work only on the text and not rest of the avs ?
Thanks
hboy#
use a dynamic movement.


per frame:
t=t+0.05;

per pixel:
x=x+t;
enable wrap also.

place this DM after the Text render and put them into an Effect list.
snoozin_hermit#
thanks, I got it to scroll (had to check Rectangular coordinates with the wrap)... but whole preset scrolls to ( @ different speed than title ?? ) how do I get just title to scroll without preset scrollin to ?
snoozin_hermit#
here is sample of avs scrollin' with title
Mr_Nudge#
it you want it to scroll to one side of the page ant then back to the other use:

Frame:
t=t+0.05

Pixel:
x=x+cos(t)
hboy#
the provided sample does not work because the effect list in which the texts+DM are, has 50/50 input blend and replace outpu. set it to ignore input and maximum blend output, and check the clear every frame for the effect list. that works 🙂