OFPEC Forum

Editors Depot - Mission Editing and Scripting => Arma2 - Editing/Scripting General => Topic started by: laggy on 26 Jan 2010, 23:23:14

Title: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: laggy on 26 Jan 2010, 23:23:14
Hello all,

Apologies if this has been discussed earlier, but doing a quick search, I couldn't find anything.

Is the screen centering of a cutRsc the same on all resolutions/monitors?

It looks good and centered on my screen 1680*1050, but I have no idea how it will look on other versions.

Code: [Select]
class RscTitles
{

class rm
{
idd=-1;
movingEnable=true;
duration=5;
    fadein = 2;
    fadeout = 3;
name="rm";
controls[]={"rm"};

class rm
{
x = - 0.65; y = - 0.4;
w = 2.3; h = 2.0;
type = 0;
idc = -1;
style = 48;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = BitStream;
sizeEx = 0;
lineSpacing = 0;
access = ReadAndWrite;
text = "rm.paa";
};
};

class closeup
{
idd=-1;
movingEnable=true;
duration=15;
    fadein = 2;
    fadeout = 3;
name="closeup";
controls[]={"closeup"};

class closeup
{
x = - 0.25; y = - 0.2;
w = 1.5; h = 1.5;
type = 0;
idc = -1;
style = 48;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = BitStream;
sizeEx = 0;
lineSpacing = 0;
access = ReadAndWrite;
text = "closeup.paa";
};
};
};

If it isn't automatic, which numbers do I play around with?

Thanks,

Laggy
Title: Re: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: i0n0s on 27 Jan 2010, 01:29:39
You already took a look at SafeZone?
Title: Re: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: laggy on 27 Jan 2010, 19:24:37
Ehh No!

What is that?

Laggy
Title: Re: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: zonker3210 on 28 Jan 2010, 02:21:21
A quick web search of "SafeZone Arma" pulled up this...

http://community.bistudio.com/wiki/SafeZone

;)

Looks like there's some Arma2 changes that affect how it works, though.
Title: Re: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: kju on 28 Jan 2010, 08:12:35
http://rte.jonasscholz.de/blog/2009/06/24/new-to-arma-2-dialogues
Title: Re: Centering cutRsc on screen on every type of resolution/monitor ???
Post by: laggy on 28 Jan 2010, 20:24:14
Thanks guys  :good:

Laggy