11-30-2017
12:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
11-30-2017
12:41 AM
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
-
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!
George Roberts
Manufacturing Product managerIf 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!
Fusion