How to retrieve the default [Basic] value of the preflight profile configuration file in INDESIGN?
When scripting the batch export of PDF files in INDESIGN, I encountered an issue with retrieving the preflight profile configuration. The problem lies in the fact that the default first value is "[Basic]," which would cause an error if passed to the following code:
var preflightProfile = app.preflightProfiles.item(preflightName);
since "[Basic]" is not a valid value. However, all other options from the dropdown menu work correctly. What is the correct value for [Basic]?

