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.

xtended

Members
  • Joined

  • Last visited

  1. I'm wondering why do you need exactly this one, not, for example, 9A-DWA?!
  2. Ray, yes, I know it. But someone started the conversation about mach speed hold so I was confused
  3. Welcome to nonB737 flightsim flyers
  4. That's exactly what I'm talking about: maybe the speed is too high...
  5. Guys, I see on screenshots above that your approach speed is at about 200 kts. Try the next technique for approach and landing (as it is in flight manual): 1. Reduce throttle to 65-69% N1 in tower proximity (20-15 nm to rwy). Your speed in clean configuration will be around 180-195 kts. 2. Before capturing GS (1 dot below) set flaps for approach (8 grad). 3. At 2200-2500 feet AGL gears down. 4. At 150 kts flaps for landing (20 grad). 5. At 400 feet AGL A/P off. Lazy fellows can keep it on Keep in mind that Vref is between 93 and 111 depending on weight. 6. At 50 feet AGL spoilers extend and a liiitle bit yoke up. 7. After touchdown throttles to idle, flaps in ground position (40 grad) and apply full brakes - antiskid will help you. Well, this is my receipt for smooth and gracious landing. If anyone wants I can make a video proof. Happy flying!
  6. I think it's the matter of rudder controller absence. I have the same problem, not in CJ only.
  7. Mouse wheel dials. Clicks - switch between registers.
  8. Left mouse button clicks on large knob switch between 100's and 10's, on small knob - between 1's and 0.1's.
  9. If this features work in this Carenado model...
  10. Yes! Update to 4.949k solved simultaneous lights toggling. And I rewrite lua code using togglebits command so the final version looks like this: SW_Pos = "L:ASD_SWITCH_CJ2525A_LAND_TAXI_RECOG" -- Move Ldg_Taxi Lt SW UP one position if ipcPARAM == 1 then SWPos = ipc.readLvar(SW_Pos) if SWPos == -1 then ipc.writeLvar(SW_Pos, 0) ipc.togglebitsUW(0x0D0C, 8) end if SWPos == 0 then ipc.writeLvar(SW_Pos, 1) ipc.togglebitsUW(0x0D0C, 4) end end -- Move Ldg_Taxi Lt SW DN one position if ipcPARAM == 2 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 1 then ipc.writeLvar(SW_Pos, 0) ipc.togglebitsUW(0x0D0C, 4) end if SWPos == 0 then ipc.writeLvar(SW_Pos, -1) ipc.togglebitsUW(0x0D0C, 8) end end P.S. God damn it! I'm becoming programist via my simmer way!
  11. I mentioned now that my switches turn ALL lights off somehow. I cannot fix it yet. My genious mind stucks.
  12. It seems I found the solution myself using my genius mind This is lua script I got: -------------------------------------------- -- Carenado CJ2+ Landing_Taxi Lights Scripts -------------------------------------------- -------------------------------------------- -- Parameters by Number -------------------------------------------- -- 1 Move Ldg_Taxi Lt SW UP one position -- 2 Move Ldg_Taxi Lt SW DN one position -------------------------------------------- ---- Variables -------------------------------------------- SW_Pos = "L:ASD_SWITCH_CJ2525A_LAND_TAXI_RECOG" -------------------------------------------- ---- Scripts -------------------------------------------- -- Move Ldg_Taxi Lt SW UP one position if ipcPARAM == 1 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 0 then ipc.writeLvar(SW_Pos, 1) ipc.clearbitsUW(0x0D0C, 8) end if SWPos == 1 then ipc.writeLvar(SW_Pos, 2) ipc.setbitsUW(0x0D0C, 4) end end -- Move Ldg_Taxi Lt SW DN one position if ipcPARAM == 2 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 2 then ipc.writeLvar(SW_Pos, 1) ipc.clearbitsUW(0x0D0C, 4) end if SWPos == 1 then ipc.writeLvar(SW_Pos, 0) ipc.setbitsUW(0x0D0C, 8) end end
  13. Bruce, a lot of thanks for your respond. I owe Carenado E50P too so I've tested your script and it works completly as I wished. Now can you tell me how to make it work in CJ2?

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.