.outputDir()

Method to get the output directory of a Single Source Layout.

The method .outputDir() is located in the file ssl.jsxinc.

Usage

//Load the first SSL into the variable ssl
var sslmngr = currentProject.SSLManager;
for(var i = 1; i <= sslmngr.count; i++) {
  var ssl = sslmngr.item(i);
  break;
}
//Now get the output directory
var dir = ssl.outputDir();

Parameters

This method has no parameters.

Return values

Value Meaning
null The object is not an SSL object.
string The path of the directory the output is created.