1 - Using titleRsc or cutRsc with the corresponding name of the TV resource. You can create your own TV picture as well. Create a targa image setting as alpha chanel what is inside of the TV frame. Then use BIS TexView2 to convert it to paa, and then define it into your description.ext file as a title.
2 - The question is not clear for me.
3 - You can use skipTime or setDate commands.
4 - You may use triggers detecting the presence of the undesired side. If an undesired unit is detected inside, you can use setPos to change its position to somewhere else.
5 - Same as case 1, description.ext with a title class definition.
// description.ext
#define CT_STATIC 0
#define ST_LEFT 0
#define ST_CENTER 2
#define ST_SHADOW 256
#define ST_PICTURE 48
class RscText
{
type = CT_STATIC;
idc = -1;
style = ST_LEFT;
h = 0.04;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = "Bitstream";
sizeEx = 0.02;
};
class RscPicture
{
type = CT_STATIC;
idc = -1;
style = ST_PICTURE;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = "Bitstream";
sizeEx = 0.04;
};
class RscTitles
{
class ofpec
{
idd=-1;
movingEnable=true;
style = ST_CENTER + ST_PICTURE;
duration=14;
name="ofpec";
controls[]={"ofpec"};
class ofpec : RscPicture
{
idc = 801;
x = 0.5;
y = 0.5;
w = 0.25;
h = 0.25;
sizeEx = 0.04;
text = "ofpec.jpg";
};
};
};
Then, in to show ofpec.jpg:
titleRsc["ofpec", "PLAIN"];