you have to do this into the description.ext
Code:
// Control types
#define CT_STATIC 0
#define ST_PICTURE 48
class RscPicture {
type = CT_STATIC;
idc = -1;
style = ST_PICTURE;
colorBackground[] = { 0, 0, 0, 0 };
colorText[] = { 1, 1, 1, 1 };
font = FontS;
size = 0;
};
class RscTitles
{
titles[]={"Logo"};
class Logo // 1) Intro ******************
{
idd=-1;
movingEnable=0;
duration=6;
fadein=0;
name="Logo";
controls[]={"Logo"};
class Logo : RscPicture
{
style=48;
text="picname.jpg";
x=0.25;
y=0.20;
w=0.48;
h=0.18;
};
};
};
where the:
x=0.25;
y=0.20;
w=0.48;
h=0.18;
is where you control the size and position of the picture.
Thanks to Gummi for the info, I had the same question a while back.