Jump to content

Think404

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Think404

  1. Yes thanks for the reply. Should be fixed when I update to latest version.
  2. Oh nevermind, just found this topic: Think I'm not running the latest version. Should be fixed now.
  3. Hello. When I export my MFD's to my second monitor it looks like this: F18: A10: The MFD in the A10 looks almost normal, but has those weird yellow lines at the sides. What could this be? In the cockpit everything looks normal. I'm using a 1920x1080 monitor on the left, a 2560x1440 in the center and an other 1920x1080 on the right. I want the MFD's on the right monitor. This is my code: Viewports = { Center = { x = 1920; y = 0; width = 2560; height = 1440; viewDx = 0; viewDy = 0; aspect = 2560/1440; } } LEFT_MFCD = { x = 4490; y = 100; width = 368; height = 368; } RIGHT_MFCD = { x = 5000; y = 100; width = 368; height = 368; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center
  4. Thanks for the guide. Only thing I cant get to work is the KU. Got this in my monitor setup: AH64_KU = { x = 20; y = 20; width = 480; height = 60; } And this is my KU_init.lua: ofile(LockOn_Options.common_script_path.."devices_defs.lua") dofile(LockOn_Options.script_path.."Displays/KU/KU_Pages_Init.lua") opacity_sensitive_materials = { "font_KU", --"font_KU_inv", } -- Parameters handling functions indicator_type = indicator_types.COMMON purposes = {render_purpose.GENERAL} -- page specific for the indicator, implements indicator border/FOV BasePage = LockOn_Options.script_path.."Displays/KU/Pages/MAIN.lua" --ViewportHandling dofile(LockOn_Options.common_script_path.."ViewportHandling.lua") try_find_assigned_viewport("AH64_KU") Tried different positions and size, but cant get it to show up. Any help?
  5. I have made a simple button box with some on/off switches. I want one of the switches to toggle the Master Arm switch in the F18. Got it to work with the following code, but sometimes the switch is reversed and I have to pause the game and put the switch in the right position. I know there is a way to avoid this, but i can't get it to work.. { down = SMS_commands.MasterArmSw_EXT, up = SMS_commands.MasterArmSw_EXT, cockpit_device_id = devices.SMS, value_down = 1.0, value_up = 0.0, name = _('Master Arm Switch - ARM/SAFE'), category = {_('Instrument Panel'), _('Master Arm Panel')}}, I have read the PDF and most of the posts in this topic, still having some trouble. Any help would be appreciated.
×
×
  • Create New...