Jump to content

MFD's on one screen


pcalvert

Recommended Posts

Um he' s using Velcro according to the post....

You could always tape/glue them onto the LCD if its going to be dedicated, Im working on the idea of doing a new stand that uses the existing mount holes but is designed to sit flush on the bottom of the screen probably attached with a bull dog clip.

At the moment I use books and the odd bit of stationary to hold it in place

Hornet, Super Carrier, Warthog & (II), Mustang, Spitfire, Albatross, Sabre, Combined Arms, FC3, Nevada, Gulf, Normandy, Syria AH-6J

i9 10900K @ 5.0GHz, Gigabyte Z490 Vision G, Cooler Master ML120L, Gigabyte RTX3080 OC Gaming 10Gb, 64GB RAM, Reverb G2 @ 2480x2428, TM Warthog, Saitek pedals & throttle, DIY collective, TrackIR4, Cougar MFDs, vx3276-2k

Combat Wombat's Airfield & Enroute Maps and Planning Tools

 

cw1.png

Link to comment
Share on other sites

No - I meant.. he has both MFD info showing from A10C ... all the other posts I've seen show how to code the export to two separate screens.. i.e. info from from the right MFD in the sim to one screen - info from the left MFD in the sim to another screen. Airdog has info from both MFD's in the sim on one screen.... I don't need to know about attaching thrustmasters bezils to a monitor!!... Can anyone help?

Asus Rampage II Extreme, i7 920 @3.8Gh, 6Gb Corsair Dominator 1600hz, Msi GTX 470 Twin Frozr, Corsair 850w Mod PSU, TIR 5, HOTAS WH

Link to comment
Share on other sites

Below is my .lua file that is referred to from the options.lua file and is the one that outputs to the second screen. Please refer to this thread to learn how to set it up according to your monitors because unless you have a 1920x1200 main monitor and a 1366x768 secondary monitor my files below will not work for you. You have to make the adjustments according to your monitor setup. If you need help let us know the resolutions of your monitors..how they are configured (side by side or on top of eachother) and I can get you the numbers you need to make it work. But you really need to read the above thread I linked to to understand what is going on.

 

 

 

 

_ = function(p) return p; end;

name = _('mmbetamfd');

Description = 'Two Monitor Config'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 1920;

height = 1200;

viewDx = 0;

viewDy = 0;

aspect = 1.6;

}

}

LEFT_MFCD =

{

x = 328;

y = 1253;

width = 360;

height = 360;

}

RIGHT_MFCD =

{

x = 1232;

y = 1253;

width = 360;

height = 360;

}

 

 

 

Below is my options lua

 

 

 

options =

{

["difficulty"] =

{

["padlock"] = false,

["easyRadar"] = false,

["miniHUD"] = false,

["birds"] = 0,

["optionsView"] = "optview_all",

["permitCrash"] = false,

["immortal"] = false,

["easyCommunication"] = false,

["map"] = true,

["radio"] = false,

["labels"] = false,

["tips"] = false,

["aftSwitching"] = false,

["cockpitLanguage"] = "english",

["units"] = "imperial",

["easyFlight"] = false,

["altTrimmingMethod"] = false,

["externalViews"] = true,

["iconsTheme"] = "nato",

["fuel"] = false,

["weapons"] = false,

["setGlobal"] = true,

["geffect"] = "realistic",

}, -- end of ["difficulty"]

["graphics"] =

{

["multiMonitorSetup"] = "mmbetamfd",

["color"] = "32",

["heatBlr"] = 0,

["resolution"] = "1920x1968",

["water"] = 1,

["fullScreen"] = false,

["visibRange"] = "High",

["aspect"] = 1.6,

["haze"] = 1,

["shadows"] = 0,

["TranspSSAA"] = false,

["width"] = 1920,

["effects"] = 3,

["MSAA"] = 0,

["textures"] = 2,

["height"] = 1968,

["HDR"] = false,

["civTraffic"] = "medium",

["lights"] = 2,

["clutterMaxDistance"] = 229,

["scenes"] = "medium",

}, -- end of ["graphics"]

["views"] =

{

["cockpit"] =

{

["mirrors"] = false,

["reflections"] = false,

["russianHud"] = false,

["avionics"] = 4,

}, -- end of ["cockpit"]

}, -- end of ["views"]

["sound"] =

{

["world"] = 0,

["radioSpeech"] = true,

["cockpit"] = 0,

["volume"] = 0,

["headphones"] = 0,

["music"] = -100,

["subtitles"] = true,

["gui"] = 0,

}, -- end of ["sound"]

["miscellaneous"] =

{

["headmove"] = false,

["f5_nearest_ac"] = true,

["f11_free_camera"] = true,

["synchronize_controls"] = false,

["f10_awacs"] = true,

}, -- end of ["miscellaneous"]

} -- end of options

 

 

 


Edited by airdog

Airdog

| Asus ROG Strix Z370-E Mobo | i7 8700K @ 4.7 | 32 GB DDR4@3200mhz | Gigabyte 2080Ti OC 11GB| Samsung M.2 960 Evo 250Gb and 500Gb | Win10 Pro | Hotas Warthog #02743 | Track IR 5 | Toshiba 47" 120hz LED | Acer 23" Touchscreen | HELIOS |Oculus Rift-S|

 

http://www.blackknightssquadron.com/

Link to comment
Share on other sites

Hi airdog, Just a qucik question before i go to bed. Why did you include your options lua... is it for the multimonitor set up? I mean... can I change that file 'in game'.. through the options page?

 

thanks

Asus Rampage II Extreme, i7 920 @3.8Gh, 6Gb Corsair Dominator 1600hz, Msi GTX 470 Twin Frozr, Corsair 850w Mod PSU, TIR 5, HOTAS WH

Link to comment
Share on other sites

Hi airdog, Just a qucik question before i go to bed. Why did you include your options lua... is it for the multimonitor set up? I mean... can I change that file 'in game'.. through the options page?

 

thanks

The below line (line 31 in the .lua file) in the options.lua has to be modified to match what you name the other file...mine happens to be "mmbetamfd" but it can be whatever you want to name it. The other mods in the option.lua can be done from the ingame GUI.

 

["multiMonitorSetup"] = "mmbetamfd",

 

 

options =

{

["difficulty"] =

{

["padlock"] = false,

["easyRadar"] = false,

["miniHUD"] = false,

["birds"] = 0,

["optionsView"] = "optview_all",

["permitCrash"] = false,

["immortal"] = false,

["easyCommunication"] = false,

["map"] = true,

["radio"] = false,

["labels"] = false,

["tips"] = false,

["aftSwitching"] = false,

["cockpitLanguage"] = "english",

["units"] = "imperial",

["easyFlight"] = false,

["altTrimmingMethod"] = false,

["externalViews"] = true,

["iconsTheme"] = "nato",

["fuel"] = false,

["weapons"] = false,

["setGlobal"] = true,

["geffect"] = "realistic",

}, -- end of ["difficulty"]

["graphics"] =

{

["multiMonitorSetup"] = "mmbetamfd", <----you have to modify this

["color"] = "32",

["heatBlr"] = 0,

["resolution"] = "1920x1968", <----can be modified within the sim GUI

["water"] = 1,

["fullScreen"] = false,

["visibRange"] = "High",

["aspect"] = 1.6,

["haze"] = 1,

["shadows"] = 0,

["TranspSSAA"] = false,

["width"] = 1920, <----can be modified within the sim GUI

["effects"] = 3,

["MSAA"] = 0,

["textures"] = 2,

["height"] = 1968, <----can be modified within the sim GUI

["HDR"] = false,

["civTraffic"] = "medium",

["lights"] = 2,

["clutterMaxDistance"] = 229,

["scenes"] = "medium",

}, -- end of ["graphics"]

["views"] =

{

["cockpit"] =

{

["mirrors"] = false,

["reflections"] = false,

["russianHud"] = false,

["avionics"] = 4,

}, -- end of ["cockpit"]

}, -- end of ["views"]

["sound"] =

{

["world"] = 0,

["radioSpeech"] = true,

["cockpit"] = 0,

["volume"] = 0,

["headphones"] = 0,

["music"] = -100,

["subtitles"] = true,

["gui"] = 0,

}, -- end of ["sound"]

["miscellaneous"] =

{

["headmove"] = false,

["f5_nearest_ac"] = true,

["f11_free_camera"] = true,

["synchronize_controls"] = false,

["f10_awacs"] = true,

}, -- end of ["miscellaneous"]

} -- end of options

 

 

 


Edited by airdog

Airdog

| Asus ROG Strix Z370-E Mobo | i7 8700K @ 4.7 | 32 GB DDR4@3200mhz | Gigabyte 2080Ti OC 11GB| Samsung M.2 960 Evo 250Gb and 500Gb | Win10 Pro | Hotas Warthog #02743 | Track IR 5 | Toshiba 47" 120hz LED | Acer 23" Touchscreen | HELIOS |Oculus Rift-S|

 

http://www.blackknightssquadron.com/

Link to comment
Share on other sites

You shoudl read the multi-monitor thread it explains all this in detail

Hornet, Super Carrier, Warthog & (II), Mustang, Spitfire, Albatross, Sabre, Combined Arms, FC3, Nevada, Gulf, Normandy, Syria AH-6J

i9 10900K @ 5.0GHz, Gigabyte Z490 Vision G, Cooler Master ML120L, Gigabyte RTX3080 OC Gaming 10Gb, 64GB RAM, Reverb G2 @ 2480x2428, TM Warthog, Saitek pedals & throttle, DIY collective, TrackIR4, Cougar MFDs, vx3276-2k

Combat Wombat's Airfield & Enroute Maps and Planning Tools

 

cw1.png

Link to comment
Share on other sites

You shoudl read the multi-monitor thread it explains all this in detail

I put that link in my post also...all we can do is hope ;)

Airdog

| Asus ROG Strix Z370-E Mobo | i7 8700K @ 4.7 | 32 GB DDR4@3200mhz | Gigabyte 2080Ti OC 11GB| Samsung M.2 960 Evo 250Gb and 500Gb | Win10 Pro | Hotas Warthog #02743 | Track IR 5 | Toshiba 47" 120hz LED | Acer 23" Touchscreen | HELIOS |Oculus Rift-S|

 

http://www.blackknightssquadron.com/

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...