8.4
Table Of Contents
- Table of Contents
 - Welcome to PReS Workflow 8.4.1
 - Basics
 - Features
- The Nature of PReS Workflow
 - About Branches and Conditions
 - Configuration Components
 - Connect Resources
 - About Data
 - About Documents
 - Debugging and Error Handling
 - The Plug-in Bar
 - About Printing
 - About Processes and Subprocesses
 - Using Scripts
 - Special Workflow Types
 - About Tasks
 - Task Properties
 - Working With Variables
 - About Configurations
 - About Related Programs and Services
 
 - The Interface
 - Copyright Information
 - Legal Notices and Acknowledgements
 
VBScript
Dim s
s = Watch.GetJobFileName
Watch.Log "The job filename is: " + s, 3
JavaScript
var s;
s = Watch.GetJobFilename();
Watch.Log("The job filename is: " + s, 3);
Python
s = Watch.GetJobFileName()
Watch.Log("The job filename is: " + s, 3)
Perl
$s = $Watch->GetJobFileName;
$Watch->Log("The job filename is: " + $s, 3);
Watch.GetOriginalFileName
Returns the original name of the file, when it was captured. This method is the same as PW_
GetOriginalFileName.
Example
VBScript
Watch.GetOriginalFileName
JavaScript
Watch.GetOriginalFileName();
Python
Watch.GetOriginalFileName()
Perl
$Watch->GetOriginalFileName();
Watch.GetMetadataFilename
Returns the complete path and file name of the metadata file associated with the current job file.










