Message 1 of 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
We need a STOP on Datron machine. A custom operational property is added:
properties = {
....
Datron_STOP: {
title : "Datron STOP",
description: "wie ISO M00",
group : "preferences",
type : "boolean",
value : false,
scope : "operation"
}
};
Each process has got a new table:
In postprocess is defined where to add the code if STOP box is checked:
function onSectionEnd() {
....
if (getProperty(properties.Datron_STOP)) {
onCommand(COMMAND_STOP);
}
According to Fusion postprocessor guide "5.1.6 Accessing Properties". Above by code should check if condition is met. Unfortunatelly, it doesn't work. I can access global property if defined, but it exports STOP code in every process.
Any suggestion how to access operational properties of process, please?
Solved! Go to Solution.