• 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.

Getting Object Placement Tool to work...

Messages
12
Hi,
this is my dll.xml:
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>Object Placement Tool</Name>
    <Disabled>False</Disabled>
    <Path>C:\Programme\Microsoft Games\Microsoft Flight Simulator X SDK\SDK\Mission Creation Kit\object_placement.dll</Path>
  </Launch.Addon>
  <Launch.Addon>
    <Name>Traffic Toolbox</Name>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Path>MyTraffic\traffictoolbox.dll</Path>
  </Launch.Addon>
</SimBase.Document>

The paths are right... What is wrong? Nothing shows up in the FSX... Is there another file I have to check?

Thanks
Oli
 
I will do this as soon as I get home. I did not think that this had to do anything with the Object Placement Tool, as I thought it was another addon.

Thanks
Oli
 
I did not think that this had to do anything with the Object Placement Tool, as I thought it was another addon.
It is another addon but you have it enabled with an incorrect path. I think this will cause the menu not to appear.

George
 
The path was correct... But I tried setting the absoulte path and after this I tried deleting the second addon... Still no menu!

Other guesses?

Thanks
Oli
 
Just to be sure, are you using the latest SP of both FsX and the SDK? Else they will not work together. So you need FsX SP1 and the SDK SP1A.
 
Ok, works now... But I really dont like it.
Which is the easiest way to put objects in the scenery when you have altitude, coordinates and object id?
Is there any way to the objects without loading every single one in the Object Placement Tool?
 
If you have all the placement information already, just writing the XML code by hand must be the fastest way.
 
Hi,
can I just add them in my EDLG2.xml from FSX Planner? What is the right syntax for this?
And can you answer my other question, please? :) :
Is there any way to view all the objects without loading every single one in the Object Placement Tool?

Thanks
Oli
 
Hi,

can I just add them in my EDLG2.xml from FSX Planner? What is the right syntax for this?

Technically yes, but that probably means they will be overwritten if you make some changes in FsX Planner. So I guess it is better to make a new XML file for your placement only.

The syntax would be something like this. Of course you can add as many SceneryObject commands in this file as you wish.

Code:
<FSData version="9.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="bglcomp.xsd">

	<SceneryObject lat="40" lon="-40" alt="0M" pitch="0.0" bank="0.0" heading="0" altitudeIsAgl="TRUE" imageComplexity="NORMAL">
		<LibraryObject name="{34a88f08-4ec0-4079-995d-b82d3569aa09}" scale="1.0"/>
	</SceneryObject>
	
</FSData>

Is there any way to view all the objects without loading every single one in the Object Placement Tool?

Not in the Object Placement Tool. Someone has made a picture pack of all the default objects, there is a post about that on the forum (but I can't find it right now).
 
Hi,
thanks, the syntax really seems easy.
I would appreciate it very much if you could help me trying to find those default object's photos... Tried a few searches but found nothing...

Thanks
Oli
 
Back
Top