Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
GeorgeRoberts
in reply to: Anonymous

Hello,

 

Thanks for posting! Just to add on to the previous recommendation, you can also display setup notes in the header of your file by modifying the post processor you are using. The code to display the setup notes is:

if (hasGlobalParameter("job-notes")) {
  var notes = getGlobalParameter("job-notes");
  if (notes) {
    var lines = String(notes).split("\n");
    var r1 = new RegExp("^[\\s]+", "g");
    var r2 = new RegExp("[\\s]+$", "g");
    for (line in lines) {
      var comment = lines[line].replace(r1, "").replace(r2, "");
      if (comment) {
        writeComment(comment);
      }
    }
  }
}

If you could share your post processor, I can advise on where to place this code.

 

Cheers

-

George Roberts

Manufacturing Product manager
If you'd like to provide feedback and discuss how you would like things to be in the future, Email Me and we can arrange a virtual meeting!