Hi,
Put this in your description.ext file:
class RscPicture
{
type=0;
idc=-1;
style=48;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,0.3};
font="tahomaB24";
size=0;
};
class RscTitles
{
class TitlePic1
{
idd=-1;
movingEnable=0;
duration=4;
name="TitlePic1";
controls[]={"Title"};
class Title: RscPicture
{
text="NameOfPicFile";
x=0.420000;
y=0.300000;
w=0.160000;
h=0.300000;
};
};
};
Just replace the bold text with the name of your picture file.
And then use the class name (TitlePic1) to show your picture:
titleRSC ["TitlePic1", "plain"]
You can also edit the duration field, distance from left (x), distance from top (y), width (w) and height (h) to your own needs.
Repeat the process 3 times (with different class names) putting the names of each picture and your done.
Cheers