Hi, it's my first post here, i'm getting fool with 2.5 :(
I have 2 monitors, 1920x1080 each, and i used to use right one for main and left one for abris and Skhval (or A-10 mfds). I have no problem with 2.2 version.. it works. But i can't work with this configuration in 2.5 version... What's wrong? now monitor 1 is at left side and 2 monitor is at right side, and it must be upside down.
can anybody help me? thanks so much
this is the file :
_ = function(p) return p; end;
name = _('KA-50 o A-10C');
Description = 'Camera on primary display and Abris + Skhval in secondray'
if displays and #displays > 1 then
Cabina =
{
x = displays[1].x - screen.x,
y = displays[1].y - screen.y,
width = displays[1].width,
height = displays[1].height,
aspect = displays[1].width/displays[1].height;
viewDx = 0;
viewDy = 0;
}
Abris =
{
x = displays[2].x - screen.x,
y = displays[2].y,
width = displays[2].width / 2,
height = displays[2].height,
viewDx = 0;
viewDy = 0;
}
Shkval =
{
x = displays[2].x - screen.x + 960,
y = displays[2].y,
width = displays[2].width / 2,
height = displays[2].height,
viewDx = 0;
viewDy = 0;
}
end
UIMainView = Cabina
RIGHT_MFCD = Abris
LEFT_MFCD = Shkval
Viewports = {UIMainView}