Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

mrm0508

Members
  • Joined

  • Last visited

  1. Thank you, I will go ahead and update and see how it goes EDIT: I concur, works fine for me too
  2. I use this code for the approach button 1·(>O:_ButtonAnimVar,·number)· (>B:AIRLINER_FCU_APPR_Push)and then read the L:var you posted for status
  3. EDIT: After checking, the update works fine Saw this posted in Discord....The recent Elgato update breaks; AAO, Pilots Deck, and Hanger Control....update with caution. Backup!!
  4. Wow, thank you so much for expanding on this. I have little knowledge of how the sim and AAO treat RPN differently, I end up with a lot of trial and error.....mostly error :) Much appreciated.
  5. These variables are compartment latches, they are either closed (0) or open (1), I am trying to check if they are all open prior to trying to open the compartment (L:SW_SOV_PANELS_Door_Baggage, Bool) which also is either closed (0) or open (1). So, if both latches are closed (both 0) the door won't open and if they are both open, then the door can open. So, I am checking to see if both latches are the same (1 or 0) with "and" and that doesn't work, it only works if I explicitly use "0 ==" or "1 ==" in the expression. It great simplifies the code if I can just use the implicit version. Here is the mousrects code for the clickspot I am working on. This code does not run in AAO as written: (A:SIM ON GROUND, Bool) 1 == if{ (L:SW_SOV_CONFIG_Simple_Openings, Bool) 0 == if{ (L:SW_SOV_PANELS_Latch_Baggage_1_1, bool) (L:SW_SOV_PANELS_Latch_Baggage_2_1, bool) (L:SW_SOV_PANELS_Latch_Baggage_3_1, bool) (L:SW_SOV_PANELS_Latch_Baggage_4_1, bool) (L:SW_SOV_PANELS_Handle_Baggage, bool) and and and and if{ (L:SW_SOV_PANELS_Door_Baggage) ! (>L:SW_SOV_PANELS_Door_Baggage) } } els{ (L:SW_SOV_PANELS_Door_Baggage) ! (>L:SW_SOV_PANELS_Door_Baggage) (L:SW_SOV_PANELS_Door_Baggage) (>L:SW_SOV_PANELS_Latch_Baggage_1_1) (L:SW_SOV_PANELS_Door_Baggage) (>L:SW_SOV_PANELS_Latch_Baggage_2_1) (L:SW_SOV_PANELS_Door_Baggage) (>L:SW_SOV_PANELS_Latch_Baggage_3_1) (L:SW_SOV_PANELS_Door_Baggage) (>L:SW_SOV_PANELS_Latch_Baggage_4_1) (L:SW_SOV_PANELS_Door_Baggage) (>L:SW_SOV_PANELS_Handle_Baggage) } } This is what I did that worked: (A:SIM·ON·GROUND,·Bool)·1·==·if{·(L:SW_SOV_PANELS_Door_Baggage,·bool)·0·==·if{·(L:SW_SOV_PANELS_Latch_Baggage_1_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_1_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_2_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_2_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_3_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_3_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_4_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_4_1,·Number)·(WAIT:3000)·(L:SW_SOV_PANELS_Handle_Baggage,·Number)·!·(>L:SW_SOV_PANELS_Handle_Baggage,·Number)·(WAIT:1000)·(L:SW_SOV_PANELS_Door_Baggage,·bool)·!·(>L:SW_SOV_PANELS_Door_Baggage,·bool)}} ·(L:SW_SOV_PANELS_Door_Baggage,·bool)·1·==·if{·(L:SW_SOV_PANELS_Door_Baggage,·bool)·!·(>L:SW_SOV_PANELS_Door_Baggage,·bool)·(WAIT:5000)·(L:SW_SOV_PANELS_Handle_Baggage,·Number)·!·(>L:SW_SOV_PANELS_Handle_Baggage,·Number)·(WAIT:1000)·(L:SW_SOV_PANELS_Latch_Baggage_1_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_1_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_2_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_2_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_3_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_3_1,·Number)·(L:SW_SOV_PANELS_Latch_Baggage_4_1,·Number)·!·(>L:SW_SOV_PANELS_Latch_Baggage_4_1,·Number)·}
  6. Either of these should flip the boolean value of (L:SW_SOV_PANELS_Door_Baggage, Bool) This does not work (A:SIM ON GROUND, Bool) 1 == if{ (L:SW_SOV_CONFIG_Simple_Openings, Bool) 0 == if{ IMPLICIT (L:SW_SOV_PANELS_Latch_Baggage_1_1, Bool) (L:SW_SOV_PANELS_Latch_Baggage_2_1, Bool) and if{ (L:SW_SOV_PANELS_Door_Baggage, Bool) ! (>L:SW_SOV_PANELS_Door_Baggage, Bool) } } } This works (A:SIM ON GROUND, Bool) 1 == if{ (L:SW_SOV_CONFIG_Simple_Openings, Bool) 0 == if{ EXPLICIT (L:SW_SOV_PANELS_Latch_Baggage_1_1, Bool) 0 == (L:SW_SOV_PANELS_Latch_Baggage_2_1, Bool) 0 == and if{ (L:SW_SOV_PANELS_Door_Baggage, Bool) ! (>L:SW_SOV_PANELS_Door_Baggage, Bool) } } }
  7. mrm0508 replied to dbw1's topic in PMDG General Forum
    Can you access their support Portal - PMDG Simulations? How about their Discord https://discord.gg/
  8. You can select the N1 reference option in the FMC PMDG Setup
  9. Axis and Ohs provides interfaces to many FMC's
  10. No, this is an issue with Live weather, there isn't a way for AAO to turn live weather off for you.
  11. You might as well add the PMDG_737MSFS_Data also
  12. Make sure you have enabled data in the aircraft ini file
  13. To toggle a variable from 1 to 0 or 0 to 1 this operation works well: (V:TheVariable) ! (>V:TheVariable) This basically reads the variable then flips its binary value and writes it back to the same variable
  14. I use 100·(>L:VC_HUD_MOVE_VAL,·number) for HUD down, 0·(>L:VC_HUD_MOVE_VAL,·number) for HUD up
  15. I created the start of scripts for the C750. Right now, it has the APU Panel, Power Panel, some Ext Lights, and Autopilot....enough to get you started anyway. C750 script

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.