Ghost_unit13 Posted July 30, 2011 Posted July 30, 2011 (edited) I just had a try with the latest patch 1.09 and noticed that my MFD setup on my second monitor is mixed up for my ipadpit grabbing solution. First I had a look in the setting of my ipadpit but they are all ok. Now I noticed that when I change the aspect of the monitor settings (got it normaly on 16:10 with a 1920x1200 main monitor setup and a 800x600 second monitor.) the position of the MFD's and there aspect ration are effected as well.. I cannot remember that it was like this before. I've not been that active lately so I might be missing something... My normal monitor configuration lua file alway looked like this to display 2 mfds in the up left corner of the second monitor. _ = function(p) return p; end; name = _('Camera + DUALMFD300'); Description = 'Dual MFCD on the left and camera on the center' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1200; viewDx = 0; viewDy = 0; aspect = screen.aspect; } } LEFT_MFCD = { x = 1921; y = 0; width =300; height = 300; } RIGHT_MFCD = { x = 2221; y = 0; width = 300; height = 300; } UIMainView = Viewports.Center Now I need to configer it like this to get the MFD on there right place with the right aspect ratio.. With same 1920x1200 and 800x600 monitor setup! _ = function(p) return p; end; name = _('Camera + DUALMFD300'); Description = 'Dual MFCD on the left and camera on the center' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1200; viewDx = 0; viewDy = 0; aspect = screen.aspect; } } LEFT_MFCD = { x = 1750; y = 0; width =220; height = 300; } RIGHT_MFCD = { x = 1970; y = 0; width = 220; height = 300; } UIMainView = Viewports.Center What you see is that the horizontal Aspect of the mdf's have to be changed to get them correct in my display. Any one noticed this or what am I missing here.. thx! Edited July 30, 2011 by Ghost_unit13 www.Ipadpit.nl :pilotfly:
Barrakooda Posted July 30, 2011 Posted July 30, 2011 Yeah it's known http://forums.eagle.ru/showthread.php?t=70716&page=15
Ghost_unit13 Posted July 31, 2011 Author Posted July 31, 2011 Ok thx ! I mist that one.. Good to know that it is not me getting :crazy: Got it working with some custom coordinates settings. www.Ipadpit.nl :pilotfly:
Recommended Posts