Hey Fakum, I have not exported any of the KA50 screens but I have for some other aircraft. For example, find below my Custom monitor setup in case it helps:
_ = function(p) return p; end;
name = _('Custom-Views&MFDs');
Description = 'Custom Views & MFDs'
Viewports =
{
Left =
{
x = 0;
y = 960;
width = 1920;
height = 1200;
viewDx = -1;
viewDy = 0;
aspect = 1920 / 1200;
},
Center =
{
x = 1920;
y = 0;
width = 3840;
height = 2160;
viewDx = 0;
viewDy = 0;
aspect = 3840 / 2160;
},
Right =
{
x = 5760;
y = 1080;
width = 1920;
height = 1080;
viewDx = 1;
viewDy = 0;
aspect = 1920 / 1080;
}
}
LEFT_MFCD =
{
x = 4394;
y = 2160;
width = 500;
height = 500;
}
RIGHT_MFCD =
{
x = 5260;
y = 2160;
width = 500;
height = 500;
}
VIGGEN_RADAR =
{
x = 5130;
y = 2280;
width = 600;
height = 600;
}
UIMainView = {
x = 1920;
y = 0;
width = 3840;
height = 2160;
aspect = 1.77;
}
GUI = UIMainView
For the Viggen radar output, I had to update the following:
C:\Eagle Dynamics\DCS World 25\Mods\aircraft\AJS37\Cockpit\scripts\radar\Indicator\init.lua
Add under top line:
local my_path = LockOn_Options.script_path.."VIGGEN_RADAR"
Add to bottom:
dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")
try_find_assigned_viewport("VIGGEN_RADAR")
I hope that helps