Naruto Posted October 9, 2018 Posted October 9, 2018 (edited) Working in V2.5.3.22176 I created a new Lua file called "LMFCD + Camera + RMFCD automatic placement" in the C:\Program Files\Eagle Dynamics\DCS World OpenBeta\Config\MonitorSetup folder. This will set the main monitor and MFD monitors to auto correct and fill in the MFD data to the resolution of your second and third monitor. Here is the script I used to set it up: _ = function(p) return p; end; name = _('LMFCD + Camera + RMFCD automatic placement'); Description = 'Camera on primary display and Left MFCD on secondary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x, y = displays[2].y - screen.y, width = displays[2].width, height = displays[2].height, } tertiary = { x = displays[3].x - screen.x, y = displays[3].y - screen.y, width = displays[3].width, height = displays[3].height, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 2; height = screen.height; } end UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary Viewports = {UIMainView} I originally had LEFT_MFCD = secondary and RIGHT_MFCD = tertiary but they MFDs came out reversed. I was using 10 inch monitors so I had to modify the script slightly to make the MFD symbology smaller and centered on my screens so the displays will fit inside a thrustmaster MFD that I ordered and will arrive Thursday. Here is the slight tweak to the above script based on my monitor sizes, yours will need to be adjusted depending on what size monitors you have. I may buy smaller monitors later since the ones I'm using were originally for X Plane 11 C172 G1000 Displays cockpit I planned on building. _ = function(p) return p; end; name = _('LMFCD + Camera + RMFCD automatic placement'); Description = 'Camera on primary display and Left MFCD on secondary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x + 256, {this moved the data from the upper left corner to the center of the monitor, this comment does not need to be included in the script} y = displays[2].y - screen.y, {I could probably add value here to move the data down some, this comment does not need to be included in the script} width = 512, height = 512, } tertiary = { x = displays[3].x - screen.x + 256, y = displays[3].y - screen.y, width = 512, height = 512, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 2; height = screen.height; } end UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary Viewports = {UIMainView} I also changed the font size of the MFD data to make it more readable C:\Program Files\Eagle Dynamics\DCS World OpenBeta\Mods\aircraft\FA-18C\Cockpit\Scripts\Multipurpose_Display_Group\Common\indicator\MDG_strokesDefs.lua stroke_thickness = 0.6 stroke_fuzziness = 0.2 This will also change the Hud font size to so adjust to your own preference. Also make sure you select the higher resolution in the DCS monitor Resolution drop down menu in the UI so all the monitors will turn on in DCS. I'm sure you can keep modifying the code to add more monitors and other displays like the RWR, UFC, AMPCD and IFEI Also RIGHT_MFCD and LEFT_MFCD must be capitalized at bottom of the script or the data will not show up on the monitors for some reason. Credit goes to Capt Zeen for some of the info here and ED for some of the auto scaling script I modified to add a third monitor. All credit goes to them as I just messed around playing with their info until I figured out how to add a third monitor for a second TM MFD. Only works for F-18C, AV8BNA and A-10C that I have tested at the moment. The AV8BNA needs the external Left_MFCD and Right_MFCD key bindings to be set to a key or HOTAS button to work correctly. Edited October 10, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
Svsmokey Posted October 9, 2018 Posted October 9, 2018 Thanks much for this ! 9700k @ stock , Aorus Pro Z390 wifi , 32gb 3200 mhz CL16 , 1tb EVO 970 , MSI RX 6800XT Gaming X TRIO , Seasonic Prime 850w Gold , Coolermaster H500m , Noctua NH-D15S , CH Pro throttle and T50CM2/WarBrD base on Foxxmounts , CH pedals , Reverb G2v2
Naruto Posted October 10, 2018 Author Posted October 10, 2018 Did some testing and here is the script for adding a fourth monitor that work fine with the AMPCD. I have it set for auto scaling and I moved the Left and Right MFD data down to the center of the screen. I actually like the Center MFCD that big since I can actually read the map now. _ = function(p) return p; end; name = _('LMFCD + Camera + RMFCD + AMPCD automatic placement'); Description = 'Camera on primary display and Left Right AMPCD MFCD on secondary, tertiary and quaternary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x + 256, y = displays[2].y - screen.y + 128, width = 512, height = 512, } tertiary = { x = displays[3].x - screen.x + 256, y = displays[3].y - screen.y + 128, width = 512, height = 512, } quaternary = { x = displays[4].x - screen.x, y = displays[4].y - screen.y, width = displays[4].width, height = displays[4].height, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 2; height = screen.height; } end UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary CENTER_MFCD = quaternary Viewports = {UIMainView} System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
apd1004 Posted October 18, 2018 Posted October 18, 2018 I like the 4 monitor configuration, that is exactly what I have. When I tried the lua for the 4 monitor config though, for some reason the AMPCD map did not display on the second larger monitor, it was just a black screen. The yellow cursor cross would move around on it but no map was visible. The map was up and running on the main cockpit display though. How do you have your monitor placement configured in Windows, or is that not an issue with auto placement?
Naruto Posted October 18, 2018 Author Posted October 18, 2018 (edited) I like the 4 monitor configuration, that is exactly what I have. When I tried the lua for the 4 monitor config though, for some reason the AMPCD map did not display on the second larger monitor, it was just a black screen. The yellow cursor cross would move around on it but no map was visible. The map was up and running on the main cockpit display though. How do you have your monitor placement configured in Windows, or is that not an issue with auto placement? You have to move the lower setup around and try different ones. Windows monitor identifier don't always match the script below with DCS for some reason. The right MFD is actually my third monitor in windows and the Left MFD is my second but they were on the wrong monitors when I fired up DCS and had to reverse them in the script. Not sure why it does that. Play around with these, trial and error until you get the right data on the right monitor. Once you do, then fix the code to match the size you want or select the code for auto scaling. I also found that if you turn off you monitors in windows or in DCS and turn them back on, it screws with the order sometimes and you have to find the right match again. Found out when I was playing in VR and powered of my monitors and Windows messed with the identifier order. UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary CENTER_MFCD = quaternary Viewports = {UIMainView} FYI when I say auto scaling I mean the script will just make the mfd size fit full size of your monitor resolution. I recommend you remove the manual location and size script and make them all auto scaling and get the data on the right monitor first then manually resize the left and right mfd data. The following script will make all four monitors auto scale to the max size of each of your particular monitors resolution: _ = function(p) return p; end; name = _('LMFCD + Camera + RMFCD + AMPCD automatic placement'); Description = 'Camera on primary display and Left Right AMPCD MFCD on secondary, tertiary and quaternary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x, y = displays[2].y - screen.y, width = displays[2].width, height = displays[2].height, } tertiary = { x = displays[3].x - screen.x, y = displays[3].y - screen.y, width = displays[3].width, height = displays[3].height, } quaternary = { x = displays[4].x - screen.x, y = displays[4].y - screen.y, width = displays[4].width, height = displays[4].height, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 2; height = screen.height; } end UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary CENTER_MFCD = quaternary Viewports = {UIMainView} Edited October 18, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
apd1004 Posted October 19, 2018 Posted October 19, 2018 I suppose I should give an up-front disclaimer to say that this is my first attempt at lua scripting in about 7 years since A-10C first came out. About a week ago I decided to get back into flight simming. Anyway, this is what I end up with when I use the script from your edited #5 above. What I need to do is get the right displays on the right monitors and get them 1:1 instead of 16:9. I'll play around with it a little to see what I can do with it. The mini-monitors are 7" 1280x720 16:9 monitors, but they are a bit too small for the Thrustmaster Cougar MFDs. I'll see how they work but I'll probably end up going with something bigger. I also may hook up an older 15" square flat panel I have for the map and make that a 5th monitor off to the left, leaving the right hand 25" for things like flight manuals, nav charts, etc. Thanks for giving me a place to start!
Naruto Posted October 19, 2018 Author Posted October 19, 2018 (edited) Thats what the auto scaling script does is make the data the full size of the monitor. Try changing the following: UIMainView = primary RIGHT_MFCD = secondary LEFT_MFCD = tertiary CENTER_MFCD = quaternary Viewports = {UIMainView} to UIMainView = primary CENTER_MFCD = secondary LEFT_MFCD = tertiary RIGHT_MFCD = quaternary Viewports = {UIMainView} That should swap the two screen or you can swap plugs in you video card but that will make the windows monitor number not match anymore. Its easier to edit the script. If that does not work, swap the CENTER_MFCD, LEFT_MFCD and RIGHT_MFCD around the secondary, tertiary and quaternary descriptors. Once the data is on the right monitors you want, then go up to the LEFT_MFCD and RIGHT_MFCD script marked as secondary, tertiary or quaternary and change the width and height to the specific size you want like width = 512, height =512 or what ever you want like I did in my 4 monitor setup in post #3. Once you manually change the size it will put the smaller MFD data in the upper left corner starting at x=0, y=0. If you want to move the data right and down, the just add + values to the x = displays[?].x - screen.x and y = displays[?].y - screen.y, like I did in my post #3. You need to play with the values since everyone will have different resolution monitors. Hope it's not too confusing but it will work. Just be aware that if you make the left and right MFCD data smaller on screen, it will get fuzzy as the lines get thicker, you will need to edit it as stated in Post #1 I also changed the font size of the MFD data to make it more readable C:\Program Files\Eagle Dynamics\DCS World OpenBeta\Mods\aircraft\FA-18C\Cockpit\Scripts\Multipurpose_Display_Group\Common\indicator\MDG_strokesDefs.lua stroke_thickness = 0.6 stroke_fuzziness = 0.2 This will also change the Hud font size to so adjust to your own preference. I wonder if ED has a script name for the kneeboard, it would be nice to export it to a seperate monitor so its not overlayed on the main cockpit display. Also be aware that if by adding all these monitors, the resolution on the UI is much bigger, then the "Show Control Panel" will not longer be in the lower left corner of the main screen. You will have to edit the ControlsIndicator_page.LUA too and that is a value you will have to mess with to put it back in the lower left corner of the main screen again. It's located in the following folder: C:\Program Files\Eagle Dynamics\DCS World OpenBeta\Mods\aircraft\FA-18C\Cockpit\Scripts\ControlsIndicator Original vale was the following: base.init_pos = {0,-(1 - 2.0*size_x)} New value is the following for my setup: base.init_pos = {0.80, -0.2} Start with mine since yours is a 4 monitor setup too but you may have to tweek values. Good luck! Edited October 21, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
apd1004 Posted October 19, 2018 Posted October 19, 2018 That did the trick, making the center MFCD the secondary instead of quaternary. The little 7" monitors are 720 high so I just made the display 720x720 and offset the left one in from the left edge to put it on the right side of the monitor. Same thing with the map display, just made it 1080 x 1080 to square it up. Thanks for pointing me in the right direction!
Naruto Posted October 19, 2018 Author Posted October 19, 2018 (edited) That did the trick, making the center MFCD the secondary instead of quaternary. The little 7" monitors are 720 high so I just made the display 720x720 and offset the left one in from the left edge to put it on the right side of the monitor. Same thing with the map display, just made it 1080 x 1080 to square it up. Thanks for pointing me in the right direction! Glad I could help, I edited my post about the show control panel info since its get messed up. Good luck with that if you use it for trimming. Edited October 19, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
Naruto Posted October 20, 2018 Author Posted October 20, 2018 (edited) My final monitor set up. Put the two 10" monitors away and decide to go with one 4k monitor and one 12" 1366 x 768 monitor for both Left and Right MFDs and one 15" 1280 x 1024 monitor for the center MFD so I can read it better. This just looks cleaner. To control the AMPCD buttons, I just used left control key as a modifier and used the right Thrustmaster MFD buttons together. Below is the script I made. _ = function(p) return p; end; name = _('3 Monitor LMFCD + Camera + RMFCD + AMPCD'); Description = 'Camera on primary display and AMPCD MFCD on secondary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x, y = displays[2].y - screen.y, width = displays[2].width, height = displays[2].height, } LEFT_MFCD = { x = displays[3].x - screen.x, y = displays[3].y - screen.y, width =600, height = 600, } RIGHT_MFCD = { x = displays[3].x - screen.x + 780, y = displays[3].y - screen.y, width = 600, height = 600, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 2; height = screen.height; } end UIMainView = primary CENTER_MFCD = secondary Viewports = {UIMainView} Note that in windows 10, my 15" monitor is listed as #3 and the 12" monitor is listed as #2. In the script, its reversed to get the MFD data on the right monitors. I have no clue why its like this so some experimentation is required on your part. Edited October 21, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
Outlaw24 Posted October 21, 2018 Posted October 21, 2018 I got your four monitor file working and just finished fine tuning my settings for it, outstanding job! Thanks for sharing. Spoiler: MSI Z790 Carbon WIFI, i9 14900KF, 64GB DDR4, MSI RTX 4090, Thrustmaster Warthog Throttle, VKB Gunfighter Ultimate MCG Pro w/200mm Extension, Winwing Orion Rudder Pedals W/damper, UTC MK II Pro, Virpil TCS Plus Collective, Dell AW3418DW Gsync monitor, 970 Pro M2 2TB (for DCS), Playseat Air Force Seat, KW-980 Jetseat, Vaicom Pro, 3X TM Cougar with Lilliput 8" screens. Tek Creations panels and controllers.
LimitedLiability Posted October 22, 2018 Posted October 22, 2018 Any idea how to make my 3 main monitors seen as a single monitor in the "monitor setup. lua"? , total is 5760x1080, And 2 each 1024x800's for the MFD's . So far it aways reverts to putting "primary" on one main monitor and not across all 3 I am thinking now that I read your monitor setup Lua, that maybe I can split the 5760÷3 (1920x1080 each) and adjust the "x" and "y" to marry them up to my individual main monitors. Any input would be appriciated greatly.
LimitedLiability Posted October 22, 2018 Posted October 22, 2018 Any idea how to make my 3 main monitors seen as a single monitor in the "monitor setup. lua"? , total is 5760x1080, And 2 each 1024x800's for the MFD's . So far it aways reverts to putting "primary" on one main monitor and not across all 3 I am thinking now that I read your monitor setup Lua, that maybe I can split the 5760÷3 (1920x1080 each) and adjust the "x" and "y" to marry them up to my individual main monitors. Any input would be appriciated greatly.
LimitedLiability Posted October 22, 2018 Posted October 22, 2018 Logged out and back in and it posted above the second time, my apologies
Naruto Posted October 22, 2018 Author Posted October 22, 2018 (edited) Any idea how to make my 3 main monitors seen as a single monitor in the "monitor setup. lua"? , total is 5760x1080, And 2 each 1024x800's for the MFD's . So far it aways reverts to putting "primary" on one main monitor and not across all 3 I am thinking now that I read your monitor setup Lua, that maybe I can split the 5760÷3 (1920x1080 each) and adjust the "x" and "y" to marry them up to my individual main monitors. Any input would be appriciated greatly. Not sure I understand what you're trying to do because the scripts I made are meant to export the MFD data to separate individual monitors while not combining all the screen together. It seems your're trying to combine all three identical monitors as a main screen but also exports MFD data too to two other monitors to for a total of 5 monitors? The DCS standard default "3 Screen" LUA is what you want to get all three monitors as a main screen. You may have to mess with that DCS script to include MFD data to the other two monitors. Try adding this to that script and adjust the location and size accordingly, this is assuming your MFD monitors are 4 and 5 in windows, assuming DCS understands Left, Center and Right are your identical monitors 1-3: _ = function(p) return p; end; name = _('3 Screen'); Description = 'Configuration with 3 identical monitors each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } LEFT_MFCD = { x = displays[4].x - screen.x, y = displays[4].y - screen.y, width = displays[4].width, height = displays[4].height, } RIGHT_MFCD = { x = displays[5].x - screen.x, y = displays[5].y - screen.y, width = displays[5].width, height = displays[5].height, } UIMainView = Viewports.Center Cant help with testing the script since I don't have five monitors where three are the same size, you're just going to have to play with the scripting and hope for the best. Edited October 22, 2018 by Naruto System specs: Intel i9-9900k OC 5.1Ghz, 32 GB PC3200 G.SKILL TridentZ RGB RAM, Asus Strix 2080 TI OC SLI, Asus Z390 Workstation Pro, 970 EVO 1TB M.2 PCIe NVMe and many other SSDs, Alienware 3418DW Widescreen 120 Hz G-Sync Monitor, Corsair H150i PRO RGB CPU Cooler Flightgear: HP Reverb Pro, Samsung Odyssey +, Virpil MongoosT-50CM2 Grip & T-50CM2 Base, TM Warthog, TM TPR Rudder, TM Cougar MFDs, Jetseat, Trackir 5, Sennheiser Game One Headset
LimitedLiability Posted October 23, 2018 Posted October 23, 2018 Hi Naruto, Thanks for the quick reply. Yes, I am trying to get "surround" on my 3 mains and at least one DDI displaying, hoping for both without any Helios or other non native software. As you can see I have got one DDI to port. Will be tinkering with what you sent tomorrow or the day after. I hope to be posting a pic soon with all working and will share my files if it does. I appriciate your feedback greatly, and will endeavor to get this sorted. I miss fsx "drag and drop" :cry: Really though, it's just a different way from fsx. Just have to make it "click" in my head I'm sure. I'm very new to DCS file tinkering. :book:
Airogue Posted November 1, 2018 Posted November 1, 2018 Any tips on using one 12in monitor to display two MFDs?
BaD CrC Posted November 1, 2018 Posted November 1, 2018 All these years playing with multi monitor setup, and I didn't know you can set conditions in the lua configuration file. This is really interesting. Thanks for sharing. https://www.blacksharkden.com http://discord.gg/blacksharkden
Adamastor Posted August 18, 2019 Posted August 18, 2019 Thread 06-10-2019 at 06:51 AM reply thanks, it really works. The image on the MFD is a little stretched, but it's just a matter of sharpening.
love0rdie Posted August 24, 2020 Posted August 24, 2020 Hi my main monitor is 4K =3840x2160 and my 2mfd screens = 1024X600 I using following lua script to getting A10 c MFD perfectly, windows monitor setup is from left main =1 mfd=2,3 but with F18 fuzzy with duplicate screen is coming ,AV8B partially working only FLIR working great rest working fuzzy and duplicate screen , Kindly help me to solve this please.Thanks My code _ = function(p) return p; end; name = _('HSBMFD1'); Description = '2 Screens and L MultiMFD' Viewports = { Center = { x = 0; y = 0; width = 3840; height = 2160; viewDx = 0; viewDy = 0; aspect = 3840 / 2160; }, LEFT_MFCD = { x = 3980; y = 0; width = 750; height = 620; aspect = 1024 / 600 }, RIGHT_MFCD = { x = 5030; y = 0; width = 750; height = 620; aspect = 1024 / 600 }, } GUI= { X = 3840; Y = 0; Width = 3840; height = 2160; } UIMainView = Viewports.Center LEFT_MFCD = Viewports.LEFT_MFCD RIGHT_MFCD = Viewports.RIGHT_MFCD
Recommended Posts