malingos Posted December 17, 2023 Posted December 17, 2023 Hello, newb here. I have a triple screen monitor setup with a single mini MFD screen. I use a custom lua file (text of which is below) to export the MFD screen. I use the center monitor and the one on the right for DCS (monitors 3 and 4 in the picture) My setup worked fine when I set it up, and still mostly works fine, however I have found that DCS will randomly launch to my leftmost monitor (2) and there's nothing I can do to fix it while keeping the monitors set up as they are - I just can't play until I turn that monitor off or move it out of position (annoying to switch back and forth every time I want to play), or until DCS seemingly randomly decides to start launching on the correct monitor again. When I edit my lua viewport to start at x=2560 (monitor 2 is 2560x1440) either it won't be fixed or there will be a visual bug, like it only showing part of the screen. Has anyone else had this issue and found any solution that allows you to keep your monitors as they are? (alternatively if anyone knows of a good program that allows the mouse to wrap around from the edges of the screen that would also fix my problem, although I would prefer to get DCS working properly) Quote _ = function(p) return p; end; name = _('multi plane single monitor single screen'); Description = 'test' Viewports = { Center = { x = 0;--2560 y = 0; width = 3440; height = 1440; aspect = 3440/1440; } } function reconfigure_for_unit(unit_type) if unit_type == "FA-18C_hornet" or unit_type == "F-15E" or unit_type == "F-15E_WSO" then --hornet or eagle use center MFD CENTER_MFCD = { x = 3448;--6008 y = 651; width = 752; height = 762; } else --any other unit type use right MFD RIGHT_MFCD = { x = 3448;--6008 y = 651; width = 752; height = 762; } end --end if end --end reconfig function UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center Basically, the only fix I've found so far is to change my monitor setting to this:
Recommended Posts