This are the (new) Support Forums for FSUIPC and related products.
These forums replace the old support forums which have been running for 20+ years. The old forums contain a wealth of information on all FSUIPC products, and are still available (until the end of the year) for read-only here.
At the moment these new forums are quite empty – I will be updating the FAQ section and copying across the User Contributions from the old forums in the next few months.
Please note that you will need to Register and Login to post for support, and also to download attachments. You can view these forums without registering.
Support is also available via Discord. Please use the following invite link to join the FSUIPC Discord server: https://discord.gg/zjwUTrxmmE
I wrote this Lua script to allow the button below the detent on a Saitek quadrant lever to be used to toggle whether the lever acts toward forward or reverse thrust. State feedback is via display or sounds (attached). It currently handles the first two throttles but can be quickly expanded (by adding a configuration section) to include all four. Below is more information from the header:
-- Throttle Manager for FSUIPC
-- E-mail: pilotjohn at gearsdown.com
-- Sounds: http://www.freesound.org/people/milton./packs/5284/
--
-- Manage throttles to provide both forward and reverse thrust
-- on single axes by allowing functionality toggle through dedicated
-- joystick buttons (such as those below the detent on Saitek quadrants).
-- Can be configured to auto-toggle to forward thrust, and in many other ways.
-- Setup (do steps 2-5 for each throttle to manage):
--
-- 1. Edit "FSUIPC.ini" and add (substitute X for 1 or next # if exists):
-- [Auto]
-- X=Lua ThrottleManager
--
-- 2. In FSX "Settings" "Controls",
-- delete joystick assignment for throttle N
--
-- 3. In FSUIPC "Axis Assignment",
-- "MOVE" "LEVER",
-- select "Send direct to FSUIPC Calibration"
-- and check "Throttle N"
--
-- 4. In FSUIPC "Joystick Calbiration",
-- on "3 of 11: Separate throttles per engine",
-- check "No reverse Zone",
-- and "Set" "Min" and "Max" for "Throttle N"
--
-- 5. In FSUIPC "Buttons + Switches",
-- check "Select for FS control",
-- choose "LuaToggle ThrottleManager",
-- and enter "N" for "Paramater"
--
-- 6. Configure below as desired.
This update adds a delay to reverse toggle to avoid accidental triggering. The trigger button has to be pushed (in-range) for 1 second by default (configurable) in order for the toggle to occur.
WARNING: This version requires the Lua socket libraries (used for timing): http://luaforge.net/...ects/luasocket/ and now requires both press and release triggers.