Davi Posted July 12, 2024 Posted July 12, 2024 sorry new to all this, I use all three monitors for dcs, when I go into my control setting, main menu and the cockpit are 20 - 30 mm on to the left side of the setting page, is in my left side monitor, have tried the lua file above but not sure what happen, I think I did something wrong and other modes running, anyway I end up with three cockpit, so I reinstalled dcs, this fix all I did but not my original problem of when I go into my control setting, main menu and the cockpit are 20 - 30null mm on to the left side of the setting page, is in my left side monitor.
MAXsenna Posted July 12, 2024 Posted July 12, 2024 sorry new to all this, I use all three monitors for dcs, when I go into my control setting, main menu and the cockpit are 20 - 30 mm on to the left side of the setting page, is in my left side monitor, have tried the lua file above but not sure what happen, I think I did something wrong and other modes running, anyway I end up with three cockpit, so I reinstalled dcs, this fix all I did but not my original problem of when I go into my control setting, main menu and the cockpit are 20 - 30null mm on to the left side of the setting page, is in my left side monitor.Never re-install DCS. It's a waste of time. Perform a repair instead.Search the forum for jonsky and multi screen setup. You probably need to adjust some files and input your total resolution. Helios could actually do that for you. Sent from my SM-A536B using Tapatalk
Davi Posted July 13, 2024 Author Posted July 13, 2024 (edited) On 7/12/2024 at 8:50 PM, MAXsenna said: Never re-install DCS. It's a waste of time. Perform a repair instead. Search the forum for jonsky and multi screen setup. You probably need to adjust some files and input your total resolution. Helios could actually do that for you. Sent from my SM-A536B using Tapatalk Hi all Update I have fix the problem. it turns out the default lua was trying to divide the hole of the x in to 1/3 for each monitor but one is smaller, but every time I put in all the numerical amounts in it would not work. I ended with this, it looks confusing, but it works. _ = function(p) return p; end; name = _('LMFCD+Camera+RMFCD3'); Description = 'Configuration with 2 identical monitors + 1 different each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 2.875; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 2.875; y = 0; width = screen.width / 2.875; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 2.875; y = 0; width = screen.width / 3.2857; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } LEFT_MFCD = { x = screen.width /4; y = 500; width = 500; height = 500; } RIGHT_MFCD = { x = screen.width *(3 / 4.2); y = 500; width = 500; height = 500; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center Edited July 13, 2024 by Davi 1
Recommended Posts