I am assuming that the screens are at the config that you stated and show up in windows as such...your Main screen in center and the 2 640 monitors are left and right of the main screen. The options.lua should have the resolution set as 2304x768. I am also assuming that the tops of the monitors are all in alignment if this is not the case then Y will have to be adjusted. I also sized the MFD's to take up the full screen on the 640 monitors....hope this helps...back up everything :)
Here is my guess what it should be:
= function(p) return p; end;
name = _('MFD Cockpit MFD');
Description = 'Left MFCD on the left monitor,Right MFCD on the right and camera on the center'
Viewports =
{
Center =
{
x = 640;
y = 0;
width = 1024;
height = 768;
viewDx = 0;
viewDy = 0;
aspect = 3;
}
}
LEFT_MFCD =
{
x = 0;
y = 0;
width = 640;
height = 480;
}
RIGHT_MFCD =
{
x = 1664;
y = 0;
width = 640;
height = 480;
}
__________________