I have a 4 monitor setup. The 3 I have for viewing everything view center each monitor is 1920x1080 and then the 4th one is 1600x9000 on the very right. Its used for my MFCD but for some reason I get them on there but it disHSBMFD1_original.luaplays also my center view behind the MFCD data. My Lua file is attached and written below. I can see the changes in the MFCD when I hit the buttons but when I'm flying around I see the whole cockpit change in those displays as well. that 4th monitor is a USB to VGA touchscreen monitor. Let me know if that is an issue. I ran out of DP and DVI.
_ = function(p) return p; end;
name = _('HSBMFD1');
Description = '3 Screens and L-R MultiMFD'
Viewports =
{
Center =
{
x = 0;
y = 0;
width = 5760;
height = 1080;
viewDx = 0;
viewDy = 0;
aspect = 5760 / 1080;
},
LEFT_MFCD =
{
x = 5760;
y = 0;
width = 525;
height = 525;
},
RIGHT_MFCD =
{
x = 5760 + 960 - 525;
y = 0;
width = 525;
height = 525;
},
}
UIMainView = Viewports.Center
LEFT_MFCD = Viewports.LEFT_MFCD
RIGHT_MFCD = Viewports.RIGHT_MFCD