Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
[ FlexSim 16.1.0 ]
How do I reference a process flow activity node? Example below (opSMT_1):
Solved! Go to Solution.
Community notifications may experience intermittent interruptions between 10–12 November during scheduled maintenance. We appreciate your patience.
[ FlexSim 16.1.0 ]
How do I reference a process flow activity node? Example below (opSMT_1):
Solved! Go to Solution.
Never mind, I used the eye dropper in model tree to get the node path.
You will get more robust ways of referencing the activity if you use the eye dropper on the activity in the ProcessFlow view instead of on the tree view.
You will get more relevant commands, such as getactivity() instead of node(). The eye dropper will also give you references based on the local variables within the trigger that you are using it from, such as another activity within that ProcessFlow.

I should clarify, I needed the full path for the node such as:
| node("Tools/ProcessFlow/Main Flows/ItemList1", model()) |
node("Tools/ProcessFlow/Main Flows/ItemList1", model())
is equivalent to:
getactivity("Main Flows", "ItemList1")