snoozin_hermit
8th December 2004 19:16 UTC
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
8th December 2004 19:26 UTC
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
8th December 2004 21:00 UTC
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
8th December 2004 21:12 UTC
here is sample of avs scrollin' with title
Mr_Nudge
9th December 2004 08:07 UTC
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
9th December 2004 08:25 UTC
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 :)
snoozin_hermit
9th December 2004 15:17 UTC
Thanks Much.... :up: greatly appreciated :D got done what I needed