mroschk Posted August 20, 2015 Report Posted August 20, 2015 Hello, is it possible to load a Flightplan ( *.PLN ) via FSUIPC ?? I searched a offset, but did not found. Thx
Paul Henty Posted August 20, 2015 Report Posted August 20, 2015 Yes, you can write the full path to offset 0x0130. Example: Declare the offset at form (class) level. (Here I have put it in it's own group and made it write only to make things simpler...) private Offset<string> flightPlan = new Offset<string>("LoadFlightPlan", 0x0130, 256, true); To load the flightplan... string flightPlanPath = @"C:\Users\phent_000\Documents\Flight Simulator X Files\VFR Jersey to Bristol.PLN"; this.flightPlan.Value = flightPlanPath;FSUIPCConnection.Process("LoadFlightPlan"); Paul
mroschk Posted August 20, 2015 Author Report Posted August 20, 2015 Hello, i had a test ... GREAT, THAT WORKS. I also found this Offset, but did not know that it is th right one. So Thanks One Question... did you also know a way to clear the flightplan? I tried to set a empty string in the Offset, but it did not work. Matthias
Paul Henty Posted August 20, 2015 Report Posted August 20, 2015 I can't see any way of clearing the flight plan. I don't think there is anyway to do it, even using the FSX User interface. Paul
mroschk Posted August 20, 2015 Author Report Posted August 20, 2015 Hi, ok, thanks anyway !! Matthias
Paul Henty Posted August 21, 2015 Report Posted August 21, 2015 Maybe. He's back on Monday. I suggest asking in the main support forum as more people will see it and may be able to help. Paul
mroschk Posted August 23, 2015 Author Report Posted August 23, 2015 Hello, thanks....but first i will wait if Pte knows a solution if he is back. Matthias
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now