it might not be on the forums anymore Gameer, you define it in your description.ext like this
class RscPicture
{
type=0;
idc=-1;
style=48;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,1};
font="tahomaB24";
size=0;
};
class RscTitles
{
class something
{
idd=-1;
// whether the user can move the control or not, doesn't work
movingEnable=0;
//duration to display in seconds
duration=4;
// the name displayed
name="something";
controls[]={"pic1"};
class pic1: RscPicture
{
text="picturename1.jpg";
//x and y position on the screen
x=0.200000;
y=0.230000;
//width and height 1 covers the full screen
w=0.300000;
h=0.400000;
};
};
titles[]={"something"};
};
images look crap if you strech them over the full screen so you will probalby need to add more pictures like this
class RscPicture
{
type=0;
idc=-1;
style=48;
colorBackground[]={0,0,0,0};
colorText[]={1,1,1,1};
font="tahomaB24";
size=0;
};
class RscTitles
{
class something
{
idd=-1;
// whether the user can move the control or not, doesn't work
movingEnable=0;
//duration to display in seconds
duration=4;
// the name displayed
name="something";
controls[]={"pic1","pic2"};
class pic1: RscPicture
{
text="picturename1.jpg";
//x and y position on the screen
x=0.200000;
y=0.230000;
//width and height 1 covers the full screen
w=0.300000;
h=0.400000;
};
class pic2: RscPicture
{
text="picturename.jpg";
x=0.500000;
y=0.230000;
w=0.300000;
h=0.400000;
};
};
titles[]={"something"};
};