March 8, 20251 yr I'm currently trying to increase/decrease the light brightness on the default asobo 737 max 8 for my stream deck plus. I have it right now from 0-100% on a rotary knob. and I cant seem to find a way to make it go up by increments like 1% or 5%. From viewing the event viewer all i see is for example "PDSTL_LIGHT_PANEL" with no indication of increase or decrease in the event viewer of it being a separate event. Is it possible to do it, if so how? Would a script help?
March 8, 20251 yr Commercial Member 20 minutes ago, Cellblok69wlamp said: Is it possible to do it, if so how? Use MSFS developer mode to check out the behavior code, see what the mouse does. Then replicate this in AAO. Activate developer mode Open Tools->Behaviors Click back into the Sim window Hover the mouse over the lever/button/knob that you are interested in and press Ctrl - G With most aircraft this will bring up the behavior code. Check out the MouseRect or Interaction components to see how the mouse interacts with the control. Use that in AAO, directly if possible, in a script if no (when the code is too complex) LORBY-SI
March 8, 20251 yr Commercial Member 35 minutes ago, Cellblok69wlamp said: I cant seem to find a way to make it go up by increments like 1% or 5%. Most controls in FS24 are controlled by IEs, thankfully. IEs can also be written as BVars, so a simple Inc or Dec goes like this: 1 (>B:PDSTL_LIGHT_FLOOD_Inc) 1 (>B:PDSTL_LIGHT_FLOOD_Dec) But with BVars you don't have control over the increment. That would have to be scripted (B:PDSTL_LIGHT_FLOOD) 1 + 100 min 100 / (>B:PDSTL_LIGHT_FLOOD_Set) (B:PDSTL_LIGHT_FLOOD) 1 - 0 max 100 / (>B:PDSTL_LIGHT_FLOOD_Set) You can use either one directly on the StreamDeck. There is a B: option to use BVars directly, and for scripts you select S: and put the code into the box. Remember to provide an event value, that box cannot be empty (although it doesn't make sense with S: ) Edited March 8, 20251 yr by Lorby_SI LORBY-SI
Create an account or sign in to comment