Editing processes

There are usually two processes, one for format A4 and one for format Letter. This part must be repeated for all processes in use.

  1. Right-click the first process and select Script.
  2. Make sure that there is a function call to BeforeProcess() inside the "if" clause. For example:
    if (...) {
     BeforeProcess(); 
    } 
  3. Click Check Syntax to verify your code.
  4. Copy the entire script content (Ctrl-A and Ctrl-C) to your clipboard.
  5. In the Editor, select Trigger After.
  6. Remove all the content in this view (Ctrl-A and Del) and replace with the copied script (Ctrl-V).
  7. Replace the BeforeProcess() function call with AfterProcess().
  8. Compile and ensure that no errors are shown.