August 17, 20178 yr ...anyone know how to move it offscreen or simply get rid of it? Ray S. Check out my aviation portfolio: http://scottshangar.net
August 17, 20178 yr Author Turns out I asked this same question a few years ago, with Carenado's reply below (Isn't Alzheimer's great?) ------------------------------------------------------------------------------------ Reply below ------------------------------------------------------------------------------------ There's a pretty simple hack that'll hide those tabs without causing other problems. Always make a backup of your plane. Locate the "avionics.lua" file inside your airplane's main folder, and open it in a text editor or coding software (such as "NotePad++, Atom, etc." Locate the following lines: CMenu = subpanel {position = {0 , 165, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { CMenu { position = { 1, 10, 30, 39 } }; };} set(CMenu.movable, false) OMenu = subpanel {position = {0 , 130, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { OMenu { position = { 1, 10, 30, 39 } }; };} set(OMenu.movable, false) AMenu = subpanel {position = {0 , 95, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { AMenu { position = { 1, 10, 30, 39 } }; };} set(AMenu.movable, false) Change them to: CMenu = subpanel {position = {-40 , 165, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { CMenu { position = { 1, 10, 30, 39 } }; };} set(CMenu.movable, false) OMenu = subpanel {position = {-40 , 130, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { OMenu { position = { 1, 10, 30, 39 } }; };} set(OMenu.movable, false) AMenu = subpanel {position = {-40 , 95, 30, 39}, noBackground = true, noResize = true, noClose = true, components = { AMenu { position = { 1, 10, 30, 39 } }; };} set(AMenu.movable, false) (Just add -40 to the X position slot of those elements. All the rest stays identical.) save the file. To access those menus, you can assign keyboard shortcuts to them. You go about it like assigning shortcuts to normal X-plane functions, but instead of selecting the function from the list in the "Settings>Joystick & Equipment> Keys" window, you go up to the top, and click on the browse button where it says, "Custom CMNDS from plugins". Then browse to "xap/Panels/0" for one key binding, "xap/Panels/1" for the next one, and "xap/Panels/2" for the last pop-up window. Regards, Daniel K. Ray S. Check out my aviation portfolio: http://scottshangar.net
August 18, 20178 yr 1 hour ago, Bert Pieke said: Which airplane? He's referring to the X-Plane Carenado planes, Bert. There are 3 popup icons ("C", "O" and "A") on the screen at all times. Bill 😎 FS2024 • PMDG 738, 777F & 777-200LR • Fenix A319, A320, A321 • TFDi MD-11 • AS/ToLiss A346 • iFly 737 MAX8 • Ini A340 • AS CRJ v2 • Ini A300 Premium • FSS 727F • FFX HJET, Visionjet and P180 2024 • A2A Comanche 2024 & Aerostar • All BLACKSQUARE aircraft • COWS DA40 & DA42 • FSW C24R Sierra & C414 TrackIR • BeyondATC • PMS GTN Payware • RealTurb • Axis & Ohs • FS Realistic Pro 9800X3D • RTX 3080 • 64GB DDR5-6000 NPPL licence holder in the UK
August 18, 20178 yr 38 minutes ago, JYW said: He's referring to the X-Plane Carenado planes, Bert. There are 3 popup icons ("C", "O" and "A") on the screen at all times. Got it! Bert
Archived
This topic is now archived and is closed to further replies.