I wouldn't use b2zgroup.paa as a classname just b2zgroup will do, then use cutRsc ["b2zgroup", "PLAIN"] to get it working, so it should look 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 b2zgroup
{
idd=-2;
movingEnable=1;
duration=8;
name="b2zgroup";
controls[]={"b2zgroup"};
class b2zgroup: RscPicture
{
text="b2zgroup.paa";
x=0.00000;
y=0.00000;
w=0.75;
h=0.375;
};
};
titles[]={"b2zgroup"};
};
};
if you want two different resources use 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 b2zgroup
{
idd=-2;
movingEnable=1;
duration=8;
name="b2zgroup";
controls[]={"b2zgroup"};
class b2zgroup: RscPicture
{
text="b2zgroup.paa";
x=0.00000;
y=0.00000;
w=0.75;
h=0.375;
};
};
class differentpic
{
idd=-2;
movingEnable=1;
duration=8;
name="differentpic";
controls[]={differentpic};
class differentpic: RscPicture
{
text="differentpic.paa";
x=0.00000;
y=0.00000;
w=0.75;
h=0.375;
};
};
titles[]={"b2zgroup","differentpic"};
};
};
but if you want one resource with two pictures so you don't have stetch them use this and adjust x & y positions
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 b2zgroup
{
idd=-2;
movingEnable=1;
duration=8;
name="b2zgroup";
controls[]={"b2zgroup","b2zgroup2"};
class b2zgroup: RscPicture
{
text="b2zgroup.paa";
x=0.00000;
y=0.00000;
w=0.75;
h=0.375;
};
class b2zgroup2: RscPicture
{
text="b2zgroup2.paa";
x=0.50000;
y=0.50000;
w=0.75;
h=0.375;
};
};
titles[]={"b2zgroup"};
};
};