This works for me, I "lifted" from a map and I use it as a base for myself, but let's give credit to the USI map studio!
class RscStdText
{
type=0;
idc=-1;
style=2;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,1};
font="font-type";
size=3;
};
class RscTitles
{
titles[]={starttext1,starttext2,starttext3,starttext4,};
class starttext1
{
idd=-1;
movingEnable=0;
duration=6;
fadein=2;
fadeout=2;
name="starttext1";
controls[]={"Screen","Titel1",};
class Screen : RscStdText
{
style=48;
text="whatever you want to say";
x=0.1;
y=0.2;
w=0.4;
h=0.1;
};
class Titel1 : RscStdText
{
text="more stuff to say";
colorText[]={0.0,0.0,0,0.9};
font="TahomaB48";
size=1.5;
x=0.1;
y=0.50;
w=0.8;
h=0.05;
};
};
class starttext2
{
idd=-1;
movingEnable=0;
duration=6;
fadein=2;
fadeout=2;
name="starttext";
controls[]={"Titel2",};
class Titel2 : RscStdText
{
text=" still more ";
colorText[]={0.0,0.0,0,0.9};
font="TahomaB48";
size=1.8;
x=0.1;
y=0.50;
w=0.8;
h=0.05;
};
};
class starttext3
{
idd=-1;
movingEnable=0;
duration=6;
fadein=2;
fadeout=2;
name="starttext";
controls[]={"Titel3",};
class Titel3 : RscStdText
{
text="still more";
colorText[]={0.8,0.8,0,0.8};
font="TahomaB48";
size=0.5;
x=0.1;
y=0.50;
w=0.8;
h=0.05;
};
};
class starttext4
{
idd=-1;
movingEnable=0;
duration=140;
fadein=2;
fadeout=2;
name="starttext4";
controls[]={"Screen"};
class Screen : RscStdText
{
style=48;
text="picture name";
colorBackground[]={0,0,0,1};
// across screen
x=0;
// up screen
y=0;
// pic width
w=1;
// pic height
h=1;
};
};