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.

Bam2000

Members
  • Joined

  • Last visited

Everything posted by Bam2000

  1. i dont use both at the same time, it was just an example that the other BVar also does the same when put on the Honeycomb Bravo. i now decided to give up on the Honeycomb Bravo autopilot and use my Midi Controller for the setup, there it is working fine
  2. okay thanks for the explaination Do you have an idea why the command for "VS UP and Down via Autopilot" getting stuck after 4 clicks and then i have to wait until i can turn it further? The command is: 1ยท(>B:AUTOPILOT_VerticalSpeed_INC) and 1ยท(>B:AUTOPILOT_VerticalSpeed_Dec) I also tried to use them with , number behind it. but it did not change anything. Seems like B Variable on a Rotary are very bad and get stuck. Have the same problem for the CRS 1 Selector Command 1ยท(>B:AIRLINER_CPT_KNOB_R1_Indicator_Set_Dec,ยทnumber) Edit: So i figured out that the "getting Stuck after a few turns" only happens with the Honeycomb Bravo Right Rotary, when i use the command 1ยท(>B:AIRLINER_CPT_KNOB_R1_Indicator_Set_Dec,ยทnumber) with the Midi Controller, its turning fast and fine all the time. Any idea why this might be happening?
  3. this is what worked for me to find the exact path in the messed up file since su5 If your editor supports regex, use: Find: Ready\(t\)\{this\.m_cbOnReadyButton=t\} Replace with: Ready(t){this.m_cbOnReadyButton=t;this.m_cbOnReadyButton()}
  4. Hi, i'm currently in the process of binding alle the buttons and levers of the Inibuilds YS-11. there i stumble around a O: Variable for the Throttle Friction Lock. How can i assign this in axis and ohs? I tried to replicate the Script from the Behavour dialog, but this is not working :(
  5. since the latest ifr update i get often cleared for takeoff airplanes right before i land, then i receive the go around call. Happend now in 3 out of 5 flights. very annoying
  6. working like a charm, thank you soooo much :)
  7. Hi, i will try to get this working, someone got a plugin for WinWing to get the screen of the WT21 CDU's from MSFS2024. its this plugin for the Community folder: https://flightsim.to/addon/105898/mobiflight-plugin-for-msfs-2024-wt21-cdus the .js script code says it sends the screen via: const MF_CAPT = "ws://localhost:8320/winwing/cdu-captain"; so i need a websocket -> HTTP bridge to get it to work with AaO. With my very limited programming skills and ChatGTP i just go the following code for the main.js const express = require("express"); const WebSocket = require("ws"); const path = require("path"); const app = express(); const port = 9080; const WS_URL = "ws://localhost:8320/winwing/cdu-captain"; let latestData = null; const ws = new WebSocket(WS_URL); ws.on("open", () => { console.log("Verbunden mit MSFS CDU WebSocket"); }); ws.on("message", (data) => { try { latestData = JSON.parse(data); } catch (e) {} }); ws.on("close", () => { console.log(" Verbindung verloren โ€“ reconnect in 5s..."); setTimeout(() => process.exit(1), 5000); }); app.get("/cdu", (req, res) => { res.json(latestData); }); app.use("/", express.static(path.join(__dirname, "public"))); app.listen(port, () => { console.log(`CDU lรคuft auf http://localhost:${port}`); }); my index.html for AaO looks like this <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>CJ4 CDU</title> <style> body { background: #111; color: #0f0; font-family: monospace; display: flex; justify-content: center; align-items: center; height: 100vh; } #cdu { display: grid; grid-template-columns: repeat(24, 14px); grid-template-rows: repeat(14, 20px); gap: 2px; background: black; padding: 10px; border: 3px solid #333; } .cell { text-align: center; white-space: pre; } /* Farben */ .c-w { color: white; } .c-g { color: #00ff00; } .c-y { color: yellow; } .c-m { color: magenta; } .c-o { color: cyan; } .c-e { color: grey; } /* GrรถรŸen */ .small { font-size: 10px; } .large { font-size: 14px; font-weight: bold; } </style> </head> <body> <div id="cdu"></div> <script> async function update() { try { const res = await fetch("/cdu"); const data = await res.json(); if (!data || !data.Data) return; const container = document.getElementById("cdu"); container.innerHTML = ""; data.Data.forEach(cell => { const el = document.createElement("div"); el.classList.add("cell"); const char = cell[0] || " "; const color = cell[1] || "w"; const size = cell[2] === 1 ? "small" : "large"; el.textContent = char; el.classList.add("c-" + color); el.classList.add(size); container.appendChild(el); }); } catch (e) {} } setInterval(update, 150); </script> </body> </html> sadly this did not the trick and i just see the HTML border i created for the screen when i open the html file. So any advice to the right direction appreaciated ๐Ÿ™‚ Edit: in short is there a way for me to websocket -> HTTP bridge via Axis and Ohs, or is this not implemented and i need another bridge for that? Mobiflight/Node.js Bridge ?
  8. Sorry for hijacking the threat, but i have to say i dont like the switch to popout function instead of "native" version like v1. For me the popout function is not stable enough and kills some fps ๐Ÿ˜ž So I just hope you will still be able to get the old version up and running Btw Someone managed to get WT21 (CJ4, asobo 737 max) working on winwing mcdu output, so It seems like there is still a way to extract the necessary information https://github.com/tracernz/wt21-mobiflight maybe you can rethink the situation. If not also fine, you did create a amazing tool but maybe it could still be possible to get the old nun popout versions back ๐Ÿ™‚
  9. Tried it - when using popout Function of panels - CTD - uninstalled ๐Ÿ˜‰
  10. It works even with photogrametry on , so idk maybe inibuilds should hire that guy ๐Ÿ˜‰
  11. thanks for the explanation, but can you give an ETA on a fix ? Looking at older threats this seems like it is a problem for some years now :( (or comes back all the time again and again?! )
  12. Hi, did get myself the inibuilds KJFK for MSFS2020 and i have to say its unusable with the RWY Bumps in 31R and 04R, i can only find old threads for this issue but seems like it never got fixed in the year 2026. How are you guys using the addon then? because i tried everything from removing every other addon from community folder, deleted the SceneryIndex folder, disabled photogrametry (did make it even worse) disabled Rolling cache, but i cannot get rid of the Bumps. Any tips highly requested. Link to Screenshot
  13. Can you use the efb in browser on external device ? Like the efb of fenix or fslabs. That's the one think I miss in the pmdg's ๐Ÿ˜ž Edit: should have watched the video first, feature is in the update. Thanks ๐Ÿ™‚
  14. thats why i would go with the FSLabs, because the MEL gives it a bit more then just ehe flying from A->B it gives you a bit more challange. but yeah the other Planes are another Level. Just looking forward to the Concord, that will be also a beast to master ๐Ÿ™‚
  15. Its a simulator, just change the weather to not see anything when you look out of the window. The reason for the glases is that you can't do it in real life ๐Ÿ˜‰
  16. Any ETA on that ? because of the Shutdown of Opensky end of August i'm searching a new ATC Tool, and Navigraph with older AIRAC is very much needed, dont want to spend 10 dollar every month on navigraph. Thinking about P2ATC 3.0 and FSHUD, more inclined to FSHUD when it will have the option for my own Navigraph NAV Database tbh ๐Ÿ™‚
  17. cheaper option would be axis and ohs, but either way you need another program for it to work ๐Ÿ™‚
  18. The Problem is not the loading to the Menu its the loading of the missions and loading Into airports in free flight. Stuck there almost every second loading:(
  19. currently trying out MSFS 2024 because i got Gamepass for one month, and omg what a word not allowed mess this is ๐Ÿ˜ฎ Still constantly stuck at loading screen, tried everything VPN, DNS, Rolling Cache and so on. Nothing helps. Edit: The Problem is not the loading to the Menu its the loading of the missions and loading Into airports in free flight. Stuck there almost every second loading:( Carreer complete mess, getting bad repuatation for landing on the right Runway, getting bad points for entering taxiway in the middle of the runway.... getting no more missions created. This is soooo bad The 1 week i have seen enough to go back to 2020, even the graphics doesn't seem to be so much better, the only things i liked where the clouds are less grainy and the performance was good not even a single stutter or lag while panning the view. But on the other hand 2020 with autofps is also getting very smooth
  20. Does anyone know if there is a variable for the flight altitude and landing altitude in the pressurization panel of the aircraft ?
  21. Sadly just updated today to 4.53 and using msfs20 ๐Ÿ˜ž
  22. Okay do you think a script will be working better than the bvars solution ?
  23. Yes super weird, only happening with the a2a Comanche , using the gns530 in Cessna 172 works like a charm and when I popout the gns530 itโ€™s shown on the webpage. Weird I donโ€™t even get to pop out the gns530 in the Comanche, it freezes as soon as the gns530 webpage opens
  24. Hi, currently using Axis_Right_Brake_Set and Axis_left_Brake_Set for the FSS Ejet its working kinda but its very stuttery when braking, so what is the best variable for the Ejet Brakes?
  25. Hey, wanted to give this also a try and did it with the A2A Comanche and the GNS530 Popout Window, but whenever i click on Asobo GNS530 on the Webpage and the GNS Interface opens the SIM Freezes ๐Ÿ˜ž With Cessna 172SP it works, so i guess its something with A2A Comanche

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.