• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

P3D v5 XMLTools in P3Dv5

Has no P3Dv4 - user, using xmltools, changed to P3Dv5.1.

I studied the help file at P3D maindir , Learning Center.chm, and found the chapter Configuration Files and Their Priorities
There a some explanations how to create an dll.xml and where to locate.
This command line was used:
Prepar3D.exe "-Configure: Category=DLL, Operation=Add, FileLocation=Roaming, Title=XMLTools64, Path=G:\P3Dv5\SimObjects\Airplanes\B727P_214FAdv-AirClassCargo-TDS\panel\XMLDSD_Gauges\XMLTools64.dll, Active=TRUE"

I'm also using DSD - gauges for sound playing , config saving and window_status(open or closed).
These works proper!

Any ideas???:(
 
Interesting.

I haven't yet installed my copy of P3D v5 so I'm just guessing about things, my response comes from a P3D v4 perspective, and you may have already looked into the following:

Did P3D v5 create this directory?

C:\Users\YourName\AppData\Roaming\Lockheed Martin\Prepar3D v5 ?

And, if yes, is there a dll.xml file in the Prepar3D v5 folder?

If "yes" to first question and "no" to second, then you will need to add a dll.xml and then edit it to show the correct path to XMLTOOLS

Doug's sound gauges - they are 'gauges' and their location (file path) is specified in your panel.cfg. XMLTOOLS is a module whose location is specified via the dll.xml file.

Bob
 
Code:
Prepar3D.exe   -Configure: Category=DLL, Operation=Add, FileLocation=Roaming, Title=XMLTools64, Path=G:\P3Dv5\SimObjects\Airplanes\B727P_214FAdv-AirClassCargo-TDS\panel\XMLDSD_Gauges\XMLTools64.dll, Active=TRUE"

Bob,
with this commandline the dll.xml will be placed in the proper director!

Excerpt from the the" Learning Center.chm"
Code:
Add-on Configuration Files
The priority for how add-on library (DLL) and application (EXE) configuration files differs from content and is initialized as follows:

ProgramData:   Configuration files named [B]dll.xml[/B] or [B]exe.xml[/B] found at: [B]%PROGRAMDATA%\Lockheed Martin\Prepar3D v5[/B]
Roaming:          Configuration files named [B]dll.xml[/B] or [B]exe.xml[/B] found at: [B]%APPDATA%\Lockheed Martin\Prepar3D v5[/B]

In my case it is %APPDATA%\Lockheed Martin\Prepar3D v5 .
And there is my dll.xml.

Code:
<?xml version="1.0" encoding="UTF-8"?>

<SimBase.Document Type="AceXML" version="3,0" id="dll">
    <Descr>AceXML Document</Descr>
    <Filename>dll.xml</Filename>
    <Launch.Addon>
        <Name>XMLTools64</Name>
        <Path>G:\P3Dv5\SimObjects\Airplanes\B727P_214FAdv-AirClassCargo-TDS\panel\XMLDSD_Gauges\XMLTools64.dll</Path>
    </Launch.Addon>

</SimBase.Document>

IMHO i tried and did everything :confused:
It's a little bit frustrating.
Thanks for your answer!

Edi
 
Last edited:
Hi, I know this is a reasonably old thread, but I am all out of ideas how to solve my XMLTools problem.

I have P3DV5 since Christmas. I used to run, and still have, P3DV3.

In P3DV3 I used to made much use of LocalVarsLogger from XMLTools3D.

I have tried implementing XMLTools64 in P3DV5, without any success.

On the P3DV5 toolbar, under Addons, I can see XMLTools64. (Located in the
P3DV5 Modules folder)

How to I include the gauge LocalVarsLogger in my cockpit.

In P3DV3 it used to be called by

gauge00=XMLTools3D!LocalVarsLogger, 0,0,245,190

where XMLTools3D was in the gauges folder.

I wonder if LocalVarsLogger is even available in P3DV5.

Any ideas would be greatly appreciated, or if you can spot the error in what I have done!

Thanks,

Walter


My dll.xml file is:

Code:
<?xml version="1.0" encoding="Windows-1252"?>
<SimBase.Document Type="Launch" version="1,0">
  <Descr>Launch</Descr>
  <Filename>dll.xml</Filename>
  <Disabled>False</Disabled>
  <Launch.ManualLoad>False</Launch.ManualLoad>
<Launch.Addon>
    <Name>XMLTools64</Name>
    <Disabled>false</Disabled>
    <ManualLoad>False</ManualLoad>
    <Path>Modules\XMLTools64.dll</Path>
    <DllStartName>module_init</DllStartName>
    <DllStopName>module_deinit</DllStopName>
  </Launch.Addon>

</SimBase.Document>
 
Back
Top