Jump to content

moving messages.


Naj-Treg

Recommended Posts

Hi.

 

I got a little question here. As a tripple screen user i find it very hard to read the messages that are coming in the upper left or right corner from the screen(radio & command menu messages). In my case it's in the corner of the left or right screen.

 

So my question is. Is it possible to get the messages on my middle screen?

If so how can i achief this?

 

Naj-Treg

Link to comment
Share on other sites

There might be a possibility to move the text only, but I suggest you use this instead: you can set the GUI viewport to the center screen only.

 

In your monitor config lua, create a viewport structure named GUI (arbitrary name) and use it as the UI main view (see below).

It will affect every view except game view (which is using the Viewports structure), MFDs (dedicated viewports) and F10 view (no fix found to modify it yet).

For example if you use three 1920x1080 monitors, you may comment the line "UIMainView = Viewports.Center" and add the following:

 

GUI = 
{
    x = 1920;
    y = 0;
    width  = 1920;
    height = 1080;
}

UIMainView = GUI
-- UIMainView = Viewports.Center

With this, the briefing, main game menu, multiplayer menu, mission editors will be displayed only on your center screen, which is more comfortable.


Edited by PiedDroit
Link to comment
Share on other sites

  • Recently Browsing   0 members

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