Lucky Posted January 2, 2015 Posted January 2, 2015 It's been about a year since I was able to run 2 monitors thanks to an issue with my Radeon 7970. Finally got a Nvidia GTX970 a few days ago and am trying to set up 2 monitors. I only want to export the MFCD's on the 2nd monitor to the right of my main monitor. Main - 1920 x 1200 2nd - 1680 x 1050 I've been able to get the MFCD's on the 2nd monitor, my problem is the cockpit is extended across both monitors. I only want it on the main monitor. I'm running win 8.1 and have the desktop extended to the 2nd monitor. Any help would be greatly appreciated. Options lua options = { ["difficulty"] = { ["birds"] = 0, ["cockpitLanguage"] = "english", ["cockpitVisualRM"] = false, ["easyCommunication"] = true, ["easyFlight"] = false, ["easyRadar"] = false, ["externalViews"] = true, ["fuel"] = false, ["geffect"] = "realistic", ["iconsTheme"] = "nato", ["immortal"] = false, ["labels"] = false, ["map"] = true, ["miniHUD"] = false, ["optionsView"] = "optview_all", ["padlock"] = true, ["permitCrash"] = true, ["radio"] = false, ["reports"] = true, ["setGlobal"] = true, ["tips"] = true, ["units"] = "imperial", ["userSnapView"] = false, ["weapons"] = false, }, ["graphics"] = { ["HDR"] = 0, ["MSAA"] = 3, ["OculusRift"] = false, ["TranspSSAA"] = true, ["aspect"] = 3, ["civTraffic"] = "", ["clutterMaxDistance"] = 0, ["cockpitShadows"] = true, ["color"] = "32", ["disableAero"] = false, ["effects"] = 3, ["fullScreen"] = false, ["haze"] = 1, ["heatBlr"] = 0, ["height"] = 1200, ["lights"] = 2, ["multiMonitorSetup"] = "2_monitor_setup", ["preloadRadius"] = 150000, ["scenes"] = "high", ["shadowTree"] = false, ["shadows"] = 0, ["sync"] = false, ["textures"] = 2, ["treesVisibility"] = 6000, ["visibRange"] = "High", ["water"] = 2, ["width"] = 3600, }, ["miscellaneous"] = { ["Coordinate_Display"] = "Lat Long", ["accidental_failures"] = false, ["f10_awacs"] = true, ["f11_free_camera"] = true, ["f5_nearest_ac"] = true, ["force_feedback_enabled"] = false, ["headmove"] = false, ["synchronize_controls"] = false, }, ["plugins"] = { ["FW-190D9"] = { ["autoRudder"] = true, }, ["Ka-50"] = { ["altTrimmingMethod"] = false, }, ["Mi-8MTV2"] = { ["Mi8RudderTrimmer"] = true, ["altMi8TrimmingMethod"] = false, ["controlHelperMi8"] = true, }, ["P-51D"] = { ["autoRudder"] = true, }, ["TF-51D"] = { ["autoRudder"] = true, }, }, ["sound"] = { ["GBreathEffect"] = true, ["cockpit"] = 0, ["gui"] = 0, ["headphones"] = 0, ["music"] = -100, ["radioSpeech"] = true, ["subtitles"] = true, ["volume"] = 0, ["world"] = 0, }, ["views"] = { ["cockpit"] = { ["avionics"] = 3, ["mirrors"] = false, ["reflections"] = false, ["russianHud"] = false, }, }, } monitor lua _ = function(p) return p; end; name = _('2_monitor_setup'); Description = '2_monitor_setup'; Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1200; viewDx = 0; viewDy = 0; aspect = 1.6; } } LEFT_MFCD = { x = 1950; y = 125; width = 810; height = 810; } RIGHT_MFCD = { x = 2751; y = 125; width = 810; height = 810; } UIMainView = Viewports.Center [sIGPIC][/sIGPIC] Lian Li 011 Dynamic Evo, Core i9 11900K @ 5.0GHz, Corsair H150i CPU cooler, Asus Prime Z590-A, Radeon RX6800 XT64GB, Team T-Force Delta DDR4 3600, Corsair RM1000X PSU, Win 11 x64
Kuky Posted January 2, 2015 Posted January 2, 2015 Remove the ; character marked red _ = function(p) return p; end; name = _('2_monitor_setup'); Description = '2_monitor_setup'; <-- Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1200; viewDx = 0; viewDy = 0; aspect = 1.6; } } LEFT_MFCD = { x = 1950; y = 125; width = 810; height = 810; } RIGHT_MFCD = { x = 2751; y = 125; width = 810; height = 810; } UIMainView = Viewports.Center PC specs: Windows 11 Home | Asus TUF Gaming B850-Plus WiFi | AMD Ryzen 7 9800X3D + LC 360 AIO | MSI RTX 5090 LC 360 AIO | 55" Samsung Odyssey Gen 2 | 64GB PC5-48000 DDR5 | 1TB M2 SSD for OS | 2TB M2 SSD for DCS | NZXT C1000 Gold ATX 3.1 1000W | TM Cougar Throttle, Floor Mounted MongoosT-50 Grip on TM Cougar board, MFG Crosswind, Track IR
Lucky Posted January 2, 2015 Author Posted January 2, 2015 (edited) Kuky, Thanks for your quick response. I won't be able to do it until I get home again tomorrow morning, but your help is much appreciated. Unfortunately I can't give you any rep until I spread some around. Edited January 2, 2015 by Lucky 1 [sIGPIC][/sIGPIC] Lian Li 011 Dynamic Evo, Core i9 11900K @ 5.0GHz, Corsair H150i CPU cooler, Asus Prime Z590-A, Radeon RX6800 XT64GB, Team T-Force Delta DDR4 3600, Corsair RM1000X PSU, Win 11 x64
Lucky Posted January 3, 2015 Author Posted January 3, 2015 That was it. Thanks again Kuky. [sIGPIC][/sIGPIC] Lian Li 011 Dynamic Evo, Core i9 11900K @ 5.0GHz, Corsair H150i CPU cooler, Asus Prime Z590-A, Radeon RX6800 XT64GB, Team T-Force Delta DDR4 3600, Corsair RM1000X PSU, Win 11 x64
PiedDroit Posted January 3, 2015 Posted January 3, 2015 @Kuky: I am very interested to know the reason why this semi-colon was the problem. I had tested Lucky's file on my rig without issue and the semi-colon is legit in lua syntax, all my monitor configuration have it as well. The only thing I can think of that could have generated Lucky's problem was to have "Viewports.Center" coordinates overlapping the MFDs viewports' coordinates. Thanks ;) P
Recommended Posts