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
Scroll $(title)
7 posts
use a dynamic movement.
place this DM after the Text render and put them into an Effect list.
enable wrap also.
per frame:
t=t+0.05;
per pixel:
x=x+t;
place this DM after the Text render and put them into an Effect list.
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 ?
here is sample of avs scrollin' with title
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)
Frame:
t=t+0.05
Pixel:
x=x+cos(t)
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 🙂
Thanks Much.... 👍 greatly appreciated 😁 got done what I needed