[Question]How to use Project Scripts

You no longer reference “project” scripts with project.package_name.method_name any longer, unless your “Scripting/Project Library/<package_name>” is actually “Scripting/Project Library/project”
In the following screenshot I would reference THIS project’s scripts with project.Security.<method_name>
56%20PM
And I would access shared scripts (which are located in the parent project) with shared.<package_name>.<method_name>

Notes:

  • Inherited scripts are always under “shared” regardless of the parent project’s name.
  • “project” only happens to be what I’ve named the package - you can name it anything else (within reason) and reference it with <high_level_package_name>.<low-level_package_name>.<method_name>(**args)