Thanks guys for the great replys. I didn't get the dynamic text to work in RscTitles, as any form of scripting inside the...
text="text goes here";
will be ignored and just shown text. ALTHOUGH...I saw a recent topic about rolling credits
, well, I managed to animate an RscTitle using variables in the description.ext to make it roll down the screen...I'll post what I did here, it mite help...who knows.
//description.ext
class RscStdText
{
type=0;
idc=-1;
style=2;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,1};
font="courierNewB64";
size=1;
};
class RscTitles
{
titles[]={credits};
class credits
{
idd=-1;
movingEnable=0;
duration=999999999999;
fadein=0;
fadeout=0;
name="credits";
controls[]={"creditstext",};
class creditstext : RscStdText
{
text="Credits go here";
colorText[]={1,0,0,1};
font="courierNewB64";
size=0.50;
x=dynamx;
y=dynamy;
w=0.8;
h=0.05;
};
};//credits.sqsdynamx=0.1
dynamy=0
#loop
TitleRsc ["credits","plain",9999]
dynamy=dynamy+0.005
~0.01
goto "loop"This is really simple, and to do anything like rolling credits then I believe this will be the best method, the script is primitive, you could add alot more to it to change sizes and colours etc.