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

MSFS20 Checklist creation

Messages
3
Country
us-hawaii
I'm cutting my teeth in the MSFS dev world with creating a checklist for an aircraft that doesn’t have one. I would love to get it to the point I can do the gauge / switch highlighting and the “eyeball” to take you to the item.

…right now I’d be happy if I could get it to check ONE thing. I apologize, it’s late night and I’m not at my PC at the moment, so I may goof up some names of stuff.

I found a checklist tutorial on the official forums, and it was ok but it never told me that I had to edit a .json file to tell the sim where to look for the checklist and libraries I was going to use. I thought I had that all sorted out, but my simple checklist (is the parking brake on?) doesn’t load and I just get a blank checklist screen. My guess is that I haven’t referenced the checklist and / or library correctly. I tried searching YouTube, but my search words must have been wrong.

Anybody got any tips or “gotchas” that I should look out for?
 
Step one. You need the layout.json file to list the checklist files otherwise MSFS simply will not recognise that they exist. For example:

Code:
    {
      "path": "SimObjects/Airplanes/antsairplanes-drifter-a-582/Checklist/Drifter_Checklist.xml",
      "size": 18424,
      "date": 132810527000303737
    },
    {
      "path": "SimObjects/Airplanes/antsairplanes-drifter-a-582/Checklist/Drifter_Library.xml",
      "size": 100585,
      "date": 132814905349196334
    },

Step two: I recommend you copy a working checklist from a default aircraft into the one you are working on. Your first step should then be to get that checklist working by making the necessary changes to the layout.json.

Start with stuff that you know works so you only have to worry about one problem at a time.
 
Step two: I recommend you copy a working checklist from a default aircraft into the one you are working on. Your first step should then be to get that checklist working by making the necessary changes to the layout.json.
Aha - thank you for the guidance!

Makes sense. Use something that works, try something simple first. I will do that today!
 
Ok - whew. Figured out that my copy / paste of the entries in the layout.json didnʻt have the correct size / date lines. Found a .json tool to help me figure those out. Once I did that (lol and found the correct plane), I can get the "other" checklist to load in my plane. Whew.

Now... to start editing.
 
Back
Top