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

Recent content by Rabia13

  1. R

    Troubleshooting Longest Common Substring Issue

    I'm having an issue with the longest common substring algorithm presented in the article. I'm getting an incorrect output when I run the following code: def lcs(X, Y, m, n): if m == 0 or n == 0: return 0; elif X[m-1] == Y[n-1]: return 1 + lcs(X, Y, m-1, n-1); else...
  2. R

    Custom Vehicles they remain motionless..

    It appears that your bus simobject is interacting correctly with the inclined surface, but you are facing issues when trying to make it move along the created lines for ground traffic on a horizontal surface. There could be several reasons why your bus model is not moving as expected.
  3. R

    Troubleshooting Error in Azure Data Factory

    I am having difficulty troubleshooting an error in Azure Data Factory. I am attempting to build a data flow to move data from an on-premises source to a cloud destination, but I am receiving the following error when I run the data flow...
  4. R

    When attempting to run Selenium via nohup on the server, an error is encountered.

    When I run the script with Python 3.10 on my local computer, it works correctly, but when I try to run it on the server using nohup, I get errors. The versions of the driver and the program are the same. Errors: NoSuchWindowException: Message: no such window: target window already closed from...
  5. R

    SignalR, Angular, WebAPI beginning questions

    Should I take this technical assessment even though I am not familiar with Angular, SignalR, and WebAPI? I do not know if a good idea to group all these together, and let me know if I should take this post down or if it is doing something incorrect or silly. But I just graduated college and am...
  6. R

    P3D/FSX Toolset for Blender 3.0.1

    Yes, Blender 3.0.1 supports the P3D/FSX Toolset. The new version has additional features and tools to help with 3D modeling and animation. For a full list of features, you can visit the Blender website.
  7. R

    XML files are not being parsed and appended to list

    I'm trying to parse all XML files in a given directory using python. I am able to parse one file at a time but that would be 'impossible' for me to do due to the roughly 19k different xml files, i.e. it works when I pre-define the tree and the root, however not when I try to run for all the...
  8. R

    P3D v5 p3d specific XML syntax check in notepad++..?

    It is possible to create a user-defined language for Notepad++ to highlight different types of variables and other syntax elements for a specific P3D version. You can find instructions on how to create a user-defined language on the Notepad++ website. Additionally, you can find instructions on...
Back
Top